PHP 动态调试

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 动态调试相关的知识,希望对你有一定的参考价值。

referer:http://blog.51cto.com/13770310/2175286
https://xdebug.org/download.php

phpstorm+phpstudy 动态调试环境,phpstorm安装参考:http://blog.51cto.com/010bjsoft/2176217
phpstudy2016自带xdebug扩展,不过php.ini不大一样,要对照着参数改改。

安装phpstudy后,开启php扩展 xdebug

对照修改php.ini

[XDebug]
xdebug.profiler_output_dir="D:phpStudy	mpxdebug"
xdebug.trace_output_dir="D:phpStudy	mpxdebug"
zend_extension="D:phpStudyphpphp-5.6.27-ntsextphp_xdebug.dll"

xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.profiler_enable=on
xdebug.remote_enable = on
xdebug.remote_handler = dbgp
xdebug.remote_host= 127.0.0.1
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM

以上是关于PHP 动态调试的主要内容,如果未能解决你的问题,请参考以下文章

php 标记内容动态 - 调试+最终代码

NodeJS”热部署“代码,实现动态调试

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

动态内存分配php

python调试之pdb调试工具

方便调试使用的代码片段