phpstorm2020 phpstudy8 调试 配置

1.在phpstudy中设置需要使用的php版本的扩展组件,开启xdebug调试组件

2.使用设置的php版本新建网站,并将根目录指向你要调试的项目目录


3.打开phpstorm设置→php→Debug,修改Debug port与phpstudy中设置的调试端口一致


4.设置DBGp Proxy


5.设置Servers


6.设置调试参数


7.设置php.ini 打开项目对应版本的php.ini文件,修改xdebug.remote_enable=Off为xdebug.remote_enable=On,修改或者设置xdebug.idekey与phpstorm中的设置相同


8.在phpstudy中重启服务器,然后在phpstorm中设置断点,调试运行即可


调试无法进入断点的问题分析:

①xdebug.remote_enable 没有设置为On 或者1

②xdebug.remote_port 设置与phpstorm中不一致

③phpstudy中未开启对应版本php的调试组件

你可能感兴趣的:(phpstorm2020 phpstudy8 调试 配置)