1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
2014-10-24 19:22:45 +02:00

19 lines
438 B
Plaintext

#################################################
# name: compile
# purpose: test compiling code
# expect: TEST::FORMAT
# options: -rr
#################################################
#[Successful compilation of %s]
#Hello World
#[Script ended normally]
#################################################
<:
define('OUT',
tempnam(null, "phpdbg"));
file_put_contents(OUT, "<?php echo \"Hello World\"; ?>");
phpdbg_exec(OUT);
:>
run
quit