PHPStorm xdebug调试Yii代码
作者:互联网
文章目录
下载 XDEBUG
1.查看 php
版本:
php -v
2.查看编译库的版本:
php -r "phpinfo();"|findstr Zend
TS 是线程安全,NTS 是非线程安全。VC15 是 VC 语言库的版本。
3.下载地址 Xdebug地址。
配置 php.ini
[xdebug]
zend_extension = "D:\software\php\ext\php_xdebug.dll" # 下载的dll路径
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.profiler_enable=on #是否启用Xdebug的性能分析,并创建性能信息文件
xdebug.remote_enable = on #是否开启远程调试
xdebug.remote_handler = dbgp #指定远程调试的处理协议
xdebug.remote_host= 192.168.200.85 #指定远程调试的主机名
xdebug.remote_port = 9001 #指定远程调试的端口号,避免9000端口和php-fpm冲突
xdebug.idekey = PHPSTORM #指定传递给DBGp调试器处理程序的IDE Key
配置 PHPSTOM
1.配置 php 版本:
2.配置 DBGp:
端口要是 php.ini 配置的 remote_port 一致。
上面配置的三个参数:ide key,host,port 要和 php.ini 里面配置的一致。
3.配置监听的服务器:
4.新建 php remote debug
:
5.启动服务器:
6.开启 debug:
客户端 cookie 设置 session_id
1.客户端的请求里面,设置 XDEBUG_SESSION=PHPSTORM
:
2.访问进入断点:
标签:xdebug,remote,配置,Yii,PHPStorm,ini,php,调试 来源: https://blog.csdn.net/WGYHAPPY/article/details/120847845