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 动态调试的主要内容,如果未能解决你的问题,请参考以下文章