首页 > 开发 > PHP > 正文

php调试利器

2024-05-04 21:53:00
字体:
来源:转载
供稿:网友

如果我们想知道某个方法被谁调用了?  debug_print_backtrace可以解决!~
测试代码:

  1. <?php 
  2.  class a{ 
  3.      function say($msg) { 
  4.          echo "msg:".$msg
  5.          echo "<pre>";debug_print_backtrace(); 
  6.      } 
  7.  } 
  8.   
  9.  class b { 
  10.      function say($msg) { 
  11.          $a = new a(); 
  12.          $a->say($msg); 
  13.      } 
  14.  } 
  15.   
  16.  class c { 
  17.      function __construct($msg) { 
  18.          $b = new b(); 
  19.          $b->say($msg); 
  20.      } 
  21.  } 
  22.   
  23.  $c = new c("test"); 
输出结果:
  1. msg:test 
  2. #0  a->say(test) called at [/var/www/test/test0723.php:12] 
  3. #1  b->say(test) called at [/var/www/test/test0723.php:19] 
  4. #2  c->__construct(test) called at [/var/www/test/test0723.php:23] 
相关链接:
http://ch2.php.net/manual/zh/function.debug-print-backtrace.php
http://ch2.php.net/manual/zh/function.debug-backtrace.php
think in coding

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表