转载自:https://www.bugbank.cn/q/article/5853afaffc0bf4f010ee6ac3.html
php调试有N多好用的工具,最近研究到phpstorm配合wamp实现php实时断点调试相当不错,推荐给大家,网上有各种配置版本,但没有一个能好使的。本文本人亲自测试通过,保证好使
本教程所涉及软件和版本如下:
phpstorm2016.3+wamp3.06(apache2.4.23+php5.6.25)
1.先下载phpstorm2016.3
2.该版本网上有破解教程,本着不推荐盗版的原则,请自行搜索
3.配置wampserver的php.ini
在php.ini的末尾:
zend_extension ="d:/wamp64/bin/php/php5.6.25/zend_ext/php_xdebug-2.4.1-5.6-vc11-x86_64.dll"
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM
4.配置phpstorm如下:
配置完这两个地方点击edit configuration
完了之后下拉选择添加的localhost
打开debug调试连接
之后点击运行或者调试,下断点就可以了,切记,千万不要右键点击运行或者调试,否则不能使用
chrome不需要配置任何东西