You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
508 B

#################################################
# name: compile
# purpose: test compiling error code
# expect: TEST::FORMAT
# options: -rr
#################################################
#[PHP Parse error: syntax error, unexpected 'echo' (T_ECHO) in %s on line %s]
#[Could not find information about included file...]
#################################################
<:
define('OUT',
tempnam(null, "phpdbg"));
file_put_contents(OUT, "<?error echo \"Hello World\"; ?>");
phpdbg_exec(OUT);
:>
run
quit