php-src/sapi/phpdbg/tests/commands/0106_compile.test
2014-06-04 02:18:39 +02:00

18 lines
424 B
Text

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