phpstorm 配置 xdebug调试工具

时间:2021-12-05 10:50:52

转载:http://www.cnblogs.com/IT--Loding/p/6013795.html

phpstorm 配置 xdebug调试工具


注意这里的配置不要写错了,否则最后运行debug没有效果

[Xdebug]
zend_extension = D:\install\wnmp\php-5.4.45-nts-Win32-VC9-x86\ext\php_xdebug-2.4.1-5.4-vc9-nts.dll     //自己debug位置
xdebug.idekey="PHPSTORM"
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.remote_host=127.0.0.1
xdebug.remote_enable=on
xdebug.remote_port = 9001   //这是设置端口 可以改 只要下面这是phpstorm 一致就可以 
xdebug.remote_autostart = no



其他参考资料:

http://www.jianshu.com/p/8fb9ad0719c2

附上phpstorm 官方配置说明:

phpstorm2017:  

https://blog.jetbrains.com/phpstorm/?s=configure+php+debugging

https://blog.jetbrains.com/phpstorm/2016/10/webinar-recording-step-into-debugging-with-phpstorm/