PHP实战PHP经验分享

给PhpStorm 安装XDebug

2017-08-01  本文已影响0人  molangwu

给PhpStorm 安装XDeug

前言

phpstorm本身没有自带断点功能,所以我们要自己给phpstorm添加调试功能。

步骤

[xdebug]
zend_extension=php安装目录\ext\php_xdebug-2.5.1-5.6-vc11-x86_64.dll
xdebug.idekey = "PHPSTORM"
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.remote_host= localhost
xdebug.remote_enable = on
xdebug.remote_port = 9000
xdebug.remote_autostart = no

资料

安装教程

http://www.cnblogs.com/xp796/p/6444106.html

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

http://www.cnblogs.com/jsn521/p/3399997.html

踩坑教程

http://www.cnblogs.com/John-/p/7039876.html

上一篇下一篇

猜你喜欢

热点阅读