这篇文章主要为大家详细介绍了php 调试利器debug_print_backtrace()用法示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
如果我们想知道某个方法被谁调用了? debug_print_backtrace可以解决代码如下:
<?php
/* 四海网 www.q1010.com */
class a{
function say($msg) {
echo "msg:".$msg;
echo "<pre>";debug_print_backtrace();
}
}
class b {
function say($msg) {
$a = new a();
$a->say($msg);
}
}
class c {
function __construct($msg) {
$b = new b();
$b->say($msg);
}
}
$c = new c("test");
代码如下:
msg:test
#0 a->say(test) called at [/var/www/test/test0723.php:12]
#1 b->say(test) called at [/var/www/test/test0723.php:19]
#2 c->__construct(test) called at [/var/www/test/test0723.php:23]
本文来自:http://www.q1010.com/173/16212-0.html
注:关于php 调试利器debug_print_backtrace()用法示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:debug_print_backtrace
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。