PHP教程

phpstorm xdebug环境搭建

本文主要是介绍phpstorm xdebug环境搭建,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

下载 xdebug & php.ini 配置
https://blog.csdn.net/github_38336924/article/details/90024015
具体下载看上面链接文章(注意:下载低版本的xdebug,高版本容易报错)
刚开始我用了3.0.4的版本死活不行,然后换了个旧点的搞定了。

 

 

或者:

 

 php.ini 配置如下

[XDebug]
zend_extension="D:\Software\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-2.7.2-7.2-vc15-nts.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir="D:\Software\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="D:\Software\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9002  
xdebug.idekey= PHPSTORM  

phpstorm 配置

设置php版本

 

 

端口配置

 

 

DBGp 配置

 

 

Servers 配置

 

 

验证一下 虽然报错了一个 但是不影响

 

 

测试

 

 

 

 

debug

浏览器的debug插件自己下载

 

 

500超时

IPCConnectTimeout 3000
    IPCCommTimeout 3000

 

 来源:https://blog.csdn.net/kuuhh/article/details/119038345

这篇关于phpstorm xdebug环境搭建的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!