ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

phpstorm xdebug环境搭建

2021-12-28 16:04:21  阅读:272  来源: 互联网

标签:xdebug remote enable profiler phpstorm output php 搭建


下载 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

标签:xdebug,remote,enable,profiler,phpstorm,output,php,搭建
来源: https://www.cnblogs.com/laijinquan/p/15740933.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有