8 lines
203 B
PHP
8 lines
203 B
PHP
|
<?php
|
||
|
|
||
|
$callbackName = $_REQUEST["callback"];
|
||
|
sleep(5);
|
||
|
print "SuperXFooBarVariable = 'Oh no! SuperXFooBarVariable is defined (should not be for timeout case).'; {$callbackName}({Status: 'good'});";
|
||
|
|
||
|
?>
|