1.在php.ini文件的xdebug配置部分加入如下配置选项。主要的含义是设置phpstorm调试客户端的地址、端口号和表示等。
xdebug.remote_enable = on xdebug.auto_trace = on xdebug.remote_handler=dbgp xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.idekey=PHPSTORM
配置完成后,打开phpstorm,设置(setting)php的解析器,此时应可以看到已安装了xdebug扩展,否则检查配置文件。
2.调试单个PHP文件
调试单个PHP文件,需要配置DBgp参数,与xdebug的配置参数一致即可。如下图所示。
之后在run>edit configurations中选择php script即可调试单个php文件。