phpstorm xdebug环境搭建

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

phpstorm xdebug环境搭建

 

 

或者:

phpstorm xdebug环境搭建

 

 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版本

phpstorm xdebug环境搭建

 

 

端口配置

phpstorm xdebug环境搭建

 

 

DBGp 配置

phpstorm xdebug环境搭建

 

 

Servers 配置

phpstorm xdebug环境搭建

 

 

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

phpstorm xdebug环境搭建

 

 

测试

phpstorm xdebug环境搭建

 

 

phpstorm xdebug环境搭建

 

 

debug

浏览器的debug插件自己下载

phpstorm xdebug环境搭建

 

 

500超时

IPCConnectTimeout 3000
    IPCCommTimeout 3000

phpstorm xdebug环境搭建

 

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

上一篇:DDR3 MIG IP核仿真与学习


下一篇:LeetCode 1. Two Sum (Easy)