1################################################# 2# name: compile 3# purpose: test compiling code 4# expect: TEST::FORMAT 5# options: -rr 6################################################# 7#[Attempting compilation of %s] 8#[Success] 9#Hello World 10################################################# 11<: 12define('OUT', 13 tempnam(null, "phpdbg")); 14file_put_contents(OUT, "<?php echo \"Hello World\"; ?>"); 15phpdbg_exec(OUT); 16:> 17run 18quit 19