mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
32 lines
782 B
PHP
32 lines
782 B
PHP
--TEST--
|
|
debug_print_backtrace limit
|
|
--FILE--
|
|
<?php
|
|
function a() {
|
|
b();
|
|
}
|
|
|
|
function b() {
|
|
c();
|
|
}
|
|
|
|
function c() {
|
|
debug_print_backtrace(0, 1);
|
|
debug_print_backtrace(0, 2);
|
|
debug_print_backtrace(0, 0);
|
|
debug_print_backtrace(0, 4);
|
|
}
|
|
|
|
a();
|
|
?>
|
|
--EXPECTF--
|
|
#0 c() called at [%sdebug_print_backtrace_limit.php:7]
|
|
#0 c() called at [%sdebug_print_backtrace_limit.php:7]
|
|
#1 b() called at [%sdebug_print_backtrace_limit.php:3]
|
|
#0 c() called at [%sdebug_print_backtrace_limit.php:7]
|
|
#1 b() called at [%sdebug_print_backtrace_limit.php:3]
|
|
#2 a() called at [%sdebug_print_backtrace_limit.php:17]
|
|
#0 c() called at [%sdebug_print_backtrace_limit.php:7]
|
|
#1 b() called at [%sdebug_print_backtrace_limit.php:3]
|
|
#2 a() called at [%sdebug_print_backtrace_limit.php:17]
|