debug_print_backtrace() 関数はバックトレースを出力します。
この関数は、debug_print_backtrace() 関数コードによって生成されたデータを表示します。
debug_print_backtrace()
<?phpfunction one($str1, $str2) { two("グレン", "泥沼"); }function two($str1, $str2) { three("クリーブランド", "ブラウン"); str1, $str2) { debug_print_backtrace() }one("ピーター", "グリフィン");?>
上記のコードの出力は次のようになります。
#0 3 人(Cleveland、Brown) が [C:webfoldertest.php:8] でコールされました。#1 2 人(Glenn、Quagmire) が [C:webfoldertest.php:4] でコールされました。#2 1 人(Peter、Griffin) が [C:webfoldertest.php:8] でコールされました。 :webfoldertest.php:15]