概述
<?php
one();
function one() {
two();
}
function two() {
three();
}
function three() {
print_r( debug_backtrace() );
}
Array
(
[0] => Array
(
[file] => /usercode/file.php
[line] => 10
[function] => three
[args] => Array
(
)
)
[1] => Array
(
[file] => /usercode/file.php
[line] => 6
[function] => two
[args] => Array
(
)
)
[2] => Array
(
[file] => /usercode/file.php
[line] => 3
[function] => one
[args] => Array
(
)
)
)
转载于:https://www.cnblogs.com/2018-05-9-ygk/p/10783638.html
最后
以上就是苗条芝麻为你收集整理的debug_backtrace的全部内容,希望文章能够帮你解决debug_backtrace所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复