mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
29 lines
829 B
PHP
Executable File
29 lines
829 B
PHP
Executable File
--TEST--
|
|
Bug - crash in debug_backtrace when trace starts in eval
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
bar();
|
|
}
|
|
|
|
function bar() {
|
|
boo();
|
|
}
|
|
|
|
function boo(){
|
|
debug_print_backtrace();
|
|
}
|
|
|
|
eval("foo();");
|
|
|
|
echo "Done\n";
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
#0 boo() called at [%s:%d]
|
|
#1 bar() called at [%s:%d]
|
|
#2 foo() called at [%s(%d) : eval()'d code:1]
|
|
#3 eval() called at [%s:%d]
|
|
Done
|
|
===DONE===
|