正确安装xdebug

1.在public文件夹中创建一个php文件输入

phpinfo();

访问这个PHP文件得到PHP版本信息

2.访问xdebug.org,选中download,进入releases中的custom installation instructions.将得到的PHP信息全选,粘贴会自动生成对应的插件。按照网站提示信息操作即可。

3.最后在修改php.ini文件时,将第一行替换网站生成的

[Xdebug]
zend_extension = D:\xmapp\php\ext\php_xdebug-2.6.1-7.2-vc15.dll
xdebug.remote_enable=1
xdebud.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="PHPSTORM"

4.安装成功后,点击在PHPStorm中的调试按钮左侧的向下箭头。点击弹出的窗口中的加号,选择PHP Web Application

5.点击server右侧的.. 添加一个服务器,名字自取,地址为localhost

 

你可能感兴趣的:(php)