(一)php安装xdebug扩展,PHPStorm+XDebug单步调试
(二)PHPStorm配置XDebug
(三)PHPStorm使用XDebug调试
(四)PhpStorm+Xdebug配置单步调试PHP
场景
在使用phpstorm等IDE编辑器编写php代码时,为了更方便的调试,我们需要安装一款php的扩展插件 xdebug。本实例当前运行环境为phpstudy集成环境。
step1 进入xdebug官网,进入用户下载引导页-
游览器输入网址:https://xdebug.org或者直接搜索xdebug进入网站。
-
点击下方download进入下载页面。点击 custom installation instructions链接。
- 打开phpinfo页面
- 右键查看源代码,全选复制
- 切换到用户下载引导页,将刚复制的phpinfo信息粘贴到输入框内
- 点击 下方 analyse my phpinfo() output 按钮,系统将会推荐适合当前php版本信息的xdebug插件
- 打开php.ini文件
- 在文件末尾加入以下几行信息
zend_extension = "D:\phpStudy2018\PHPTutorial\php\php-7.1.13-nts\ext\php_xdebug-2.7.2-7.1-vc14-nts.dll" xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.idekey="PHPSTORM"
经过上面几个步骤,我们就安装好了php的xdebug扩展,并且配置好了phpstorm中的相关配置,下面就可以使用phpstorm的xdebug功能进行调试工作啦。