debug PHP_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > debug PHP

debug PHP

 2014/9/27 11:50:58  coollyj  程序员俱乐部  我要评论(0)
  • 摘要:php.inizend_extension_ts="c:\wamp\php\ext\php_xdebug-2.0.2-5.2.5.dll"xdebug.auto_trace=Onxdebug.collect_params=Onxdebug.collect_return=Onxdebug.trace_output_dir="d:/debuginfo"xdebug.profiler_enable=Onxdebug.profiler_output_dir="d:/debuginfo"xdebug
  • 标签:PHP debug
php.ini

class="java" name="code">
zend_extension_ts = "c:\wamp\php\ext\php_xdebug-2.0.2-5.2.5.dll"
xdebug.auto_trace = On   
xdebug.collect_params = On
xdebug.collect_return = On
xdebug.trace_output_dir = "d:/debuginfo"
xdebug.profiler_enable = On
xdebug.profiler_output_dir = "d:/debuginfo"
xdebug.remote_enable = true
xdebug.remote_mode = req   
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 19000       
xdebug.remote_handler = dbgp

;是否覆盖php里面的函数var_dump();默认是开启的,值为1;设为0,则关闭;
xdebug.overload_var_dump = 1

;WinCacheGrind使用
xdebug.profiler_output_name = "cachegrind.out.%p"



eclipse 配置









WinCacheGrind是windows下的profile查看程序。 查看debug信息http://sourceforge.net/projects/wincachegrind

打开WinCacheGrind,将"Tools"=>"Options" =>"Main"的"working flolder" 设置为php.ini中指定的路径xdebug目录。然后刷新一下本地的网页,应该就可以看到下面的监控文件了。

使用 F5 F6 F8调试吧
  • 大小: 130 KB
  • 大小: 451.4 KB
  • 大小: 415.7 KB
  • 大小: 697.4 KB
  • 查看图片附件
发表评论
用户名: 匿名