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\tmp\xdebug"xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"zend_extension="D:\phpStudy\php\php-5.6.27-nts\ext\php_xdebug.dll"xdebug.auto_trace=onxdebug.collect_params=onxdebug.collect_return=onxdebug.profiler_enable=onxdebug.remote_enable = onxdebug.remote_handler = dbgpxdebug.remote_host= 127.0.0.1xdebug.remote_port = 9000xdebug.idekey = PHPSTORM
PHP 动态调试
原文地址:http://blog.51cto.com/010bjsoft/2176308