PHP debug_backtrace() 函數(shù)
PHP debug_backtrace() 函數(shù)

定義和用法
debug_backtrace() 函數(shù)生成 backtrace。
該函數(shù)顯示由 debug_backtrace() 函數(shù)代碼生成的數(shù)據(jù)。
返回一個(gè)關(guān)聯(lián)數(shù)組。下面是可能返回的元素:
名稱(chēng) | 類(lèi)型 | 描述 |
---|---|---|
function | string | 當(dāng)前的函數(shù)名。 |
line | integer | 當(dāng)前的行號(hào)。 |
file | string | 當(dāng)前的文件名。 |
class | string | 當(dāng)前的類(lèi)名。 |
object | object | 當(dāng)前對(duì)象。 |
type | string | 當(dāng)前的調(diào)用類(lèi)型,可能的調(diào)用:
|
args | array | 如果在函數(shù)中,列出函數(shù)參數(shù)。如果在被引用的文件中,列出被引用的文件名。 |
語(yǔ)法
debug_backtrace()
實(shí)例
<?php
function one($str1, $str2)
{
two("Glenn", "Quagmire");
}
function two($str1, $str2)
{
three("Cleveland", "Brown");
}
function three($str1, $str2)
{
print_r(debug_backtrace());
}
one("Peter", "Griffin");
?>
function one($str1, $str2)
{
two("Glenn", "Quagmire");
}
function two($str1, $str2)
{
three("Cleveland", "Brown");
}
function three($str1, $str2)
{
print_r(debug_backtrace());
}
one("Peter", "Griffin");
?>
上面代碼的輸出如下所示:
Array
(
[0] => Array
(
[file] => C:webfoldertest.php
[line] => 7
[function] => three
[args] => Array
(
[0] => Cleveland
[1] => Brown
)
)
[1] => Array
(
[file] => C:webfoldertest.php
[line] => 3
[function] => two
[args] => Array
(
[0] => Glenn
[1] => Quagmire
)
)
[2] => Array
(
[file] => C:webfoldertest.php
[line] => 14
[function] => one
[args] => Array
(
[0] => Peter
[1] => Griffin
)
)
)
(
[0] => Array
(
[file] => C:webfoldertest.php
[line] => 7
[function] => three
[args] => Array
(
[0] => Cleveland
[1] => Brown
)
)
[1] => Array
(
[file] => C:webfoldertest.php
[line] => 3
[function] => two
[args] => Array
(
[0] => Glenn
[1] => Quagmire
)
)
[2] => Array
(
[file] => C:webfoldertest.php
[line] => 14
[function] => one
[args] => Array
(
[0] => Peter
[1] => Griffin
)
)
)

相關(guān)文章
- PHP 變量
- PHP 數(shù)據(jù)類(lèi)型
- PHP If Else 語(yǔ)句
- PHP 面向?qū)ο?/a>
- PHP $_GET 變量
- PHP 高級(jí)過(guò)濾器
- PHP array_count_values() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP krsort() 函數(shù)
- PHP prev() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)
- PHP 5 MySQLi 函數(shù)