phpStorm Xdebug局域网远程调试

1.安装Xdebug

这个网上很多,就不说了,我的php.ini设置如下


解释一下:xdebug.remote_enable=1,是开启远程调试,xdebug.remote_host = "192.168.1.173"是开发机器的ip,xdebug.remote_host = 9005 是开发机器上xdebug要监听的端口

2.配置一个部署服务器



3.配置一个Web服务器



4.phpStorm设置xdebug



5.配置一个运行调试设置

然后点上面的绿三角是直接运行(如果浏览器调试打开,会进入断点),点击绿色小瓢虫会直接进入断点

你可能感兴趣的:(phpStorm Xdebug局域网远程调试)