下载 Xdebug
准备阶段
在localhost下添加一个phpinfo.php的文件
<code><?php phpinfo(); ?></code>
在浏览器访问 http://localhost/phpinfo.php,显示如下:
Ctrl+A
选择所有文本,Ctrl+C
复制。
Xdebug 官网下载合适的 dll
文件
Instructions
一步一步操作。php.ini
官网文档:https://www.jetbrains.com/phpstorm/help/configuring-xdebug.html
下载 Xdebug helper
chrome 网上应用商店 https://chrome.google.com/webstore/detail/xdebug-helper/eadndfjplgieldjbigjakmdgkmoaaaoc?hl=zh-CN
配置,选择 phpStorm,把网址的域名加入白名单。
之后访问白名单里的站点,就可以看到如下:
下载 phpStorm
破解
官网下载:https://www.jetbrains.com/phpstorm/download/#section=windows-version
注册时选择 License server,填写 http://idea.lanyus.com/
配置php环境
配置 debug
php.in
中的一致,如果没有设置端口,默认就是9000
。DBGp Proxy
设置 PHP Web Application
Edit Configurations...
,然后配置站点断点调试
phpStorm 会自动弹出,我们这样查看变量:
大功告成!
以上就介绍了phpStorm 10 断点调试,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。