phpstorm+xdebug 断点调试

php环境安装好了,接下来就是安装xdebug

1,我用的集成包wamp里面自动给安装好了xdebug,可以查看phpinfo()

php.ini里面的配置


; XDEBUG Extension


zend_extension = "d:/wamp/bin/php/php5.3.10/zend_ext/php_xdebug-2.1.2-5.3-vc9.dll"


[xdebug]
xdebug.remote_enable = on
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = on
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9002
xdebug.idekey = PHPSTORM



2,配置phpstorm

第一步,打开phpstorm 文件---》设置



第二部,在顶部搜索xdebug,看一下xdebug端口设置,默认是9000我的被占用了,所有设置成9002,这个要和php.ini(xdebug.remote_port = 9002)里面的端口设置一致



3,点击  运行--》编辑结构


进入下面界面




设置好phpstorm以后设置浏览器


我用的谷歌chrome浏览器,下载一个浏览器的xdebug


点击进去了以后把下载的xdebug拖进去,如下图


点击选项


设置完,重启浏览器


在phpstorm里面设置断点,启动先点击像电话一样的东西,启动断点,之后点击爬虫



如果没有错误出现下面的界面就,恭喜你成功了






你可能感兴趣的:(phpstorm+xdebug 断点调试)