debug_print_backtrace

(PHP 5, PHP 7, PHP 8)

debug_print_backtrace バックトレースを表示する

説明

debug_print_backtrace(int $options = 0, int $limit = 0): void

debug_print_backtrace() は PHP バックトレースを 表示します。関数のコール、include / require されているファイル、 そして eval() された内容などが表示されます。

パラメータ

options

このパラメータは次のオプションのビットマスクとなります。

debug_print_backtrace() のオプション
DEBUG_BACKTRACE_IGNORE_ARGS "args" インデックスを無視してすべての関数/メソッドの引数をメモリに格納するかどうか。

limit

このパラメータを使ってスタックフレームの数を制限できます。 デフォルト (limit=0) は、すべてのスタックフレームを表示します。

戻り値

値を返しません。

例1 debug_print_backtrace() の例

<?php
// ファイル名: include.php

function a() {
    
b();
}

function 
b() {
    
c();
}

function 
c(){
    
debug_print_backtrace();
}

a();

?>
<?php
// ファイル名: test.php
// このファイルを実行する

include 'include.php';
?>

上の例の出力は、 たとえば以下のようになります。

#0  c() called at [/tmp/include.php:10]
#1  b() called at [/tmp/include.php:6]
#2  a() called at [/tmp/include.php:17]
#3  include(/tmp/include.php) called at [/tmp/test.php:3]

参考

関連キーワード:  表示, backtrace, debug, include, tmp, called, limit, 関数, パラメータ, int