PHP phpstorm快速配置xdebug

1. PHP安装xdebug扩展
php.ini的配置,下面的配置仅供参考,路径要换成自己的!

[xdebug]
zend_extension=”D:\wamp\php-5.6.2-x64\ext\php_xdebug-2.2.5-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

ps : remote_handler 、 remote_host、 remote_port 这些都有默认值,但还是建议设置下,至少知道要设置这些参数~
查看phpinfo~

PHP phpstorm快速配置xdebug_第1张图片

2.PHPSTORM设置

1.首先检查phpstorm的xdebug配置
这里的debug port要和php.ini里面的 xdebug.remote_port相一致!默认是9000,如果9000端口被占用的话,可以改成其他端口。

PHP phpstorm快速配置xdebug_第2张图片

PHP phpstorm快速配置xdebug_第3张图片

  1. 设置debug.
    PHP phpstorm快速配置xdebug_第4张图片

    PHP phpstorm快速配置xdebug_第5张图片

    添加本地的 web server~
    www.xxx.pcom 是我本地的 web server~ ~
    PHP phpstorm快速配置xdebug_第6张图片

    PHP phpstorm快速配置xdebug_第7张图片

    PHP phpstorm快速配置xdebug_第8张图片

    3.开始调试
    打好第一个断点,shift + F9就可以了
    打好 第一个断点 ,选中配置的debug, 按旁边的臭虫 按钮
    PHP phpstorm快速配置xdebug_第9张图片

    总结:
    根据断点配置,或在打开 Debug URL 的过程中,或在 POST 之后,如果 PhpStorm 监听到了 Debug 连接,就会立即切换到编辑器界面,并跳转到设置的断点处,浏览器端会等待 PhpStorm 的操作。
    你可以随时中断 PhpStorm 的调试,或方便的进行 Step Into / Step Over / Run to cursor(这个刁爆了):
    哎呀,不想调试了,PhpStorm 却总是跳出来?记得刚刚那个电话按钮嘛,再点一下,让其变成红色,就好了。

你可能感兴趣的:(PHP phpstorm快速配置xdebug)