参考文章: phpstorm 断点调试 傻瓜教程
Xdebug+phpStorm安装与调试保姆级教程!『通俗易懂』
Xdebug下载地址
视频小演示
关于Cannot load Xdebug - it was already loaded的bug
将php.ini中的
zend_extension = xdebug
这行删除即可
关于Xdebug: [Config] The setting “xxx” has been removed 的 bug
是因为php.ini中配置选项错误了,Xdebug3.0版本和2.0版本配置不一样 3.0版本用了2.0的版本配置就会出现这个bug 解决办法:将配置文件修改为3.0版本:
php.ini中配置Xdebug3.0:
[xdebug]
[xdebug]
zend_extension = "E:\xxxxxx\php7.3.4nts\ext\php_xdebug.dll"
xdebug.log = "xdebug.log"
xdebug.mode = debug
xdebug.start_with_request = yes
xdebug.client_port = 9003
xdebug.client_host = "127.0.0.1"
xdebug.idekey="PHPSTORM"
xdebug.discover_client_host=true
xdebug.collect_return = On ;收集返回值
3.0版本安装了错误的2.0版本为:
php.ini中配置Xdebug2.0:
[xdebug]
;加载xdebug库文件
xdebug.mode=debug
zend_extension = "E:\php\php7.3.4nts\ext\php_xdebug.dll"
xdebug.auto_trace="On"
xdebug.show_exception_trace="On"
xdebug.remote_autostart="On"
;开启远程调试
xdebug.remote_enable = "1"
;客户机ip
xdebug.remote_host = "localhost"
;客户机xdebug监听端口和调试协议
xdebug.remote_port = "9003"
;用于zend studio远程调试的应用层通信协议
xdebug.remote_handler = "dbgp"
xdebug.collect_vars="On"
;是否开启调试内容
xdebug.profiler_enable = "On"
xdebug.trace_output_dir="E:\xdebug_tmp\debug.log"
xdebug.profiler_output_dir="E:\xdebug_tmp\debug.log"
|