This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

@@ -1,7 +1,23 @@
[xdebug]
xdebug.mode=develop,debug
xdebug.start_with_request=yes
xdebug.client_host=host.docker.internal
xdebug.client_port=9003
xdebug.idekey=PHPSTORM
xdebug.log=/var/log/xdebug.log
; Xdebug 配置
zend_extension=xdebug.so
; 基本配置
xdebug.mode=debug,develop
xdebug.start_with_request=yes
xdebug.discover_client_host=false
; 远程调试配置
xdebug.client_host=host.docker.internal
xdebug.client_port=9003
xdebug.idekey=VSCODE
; 日志配置(调试时开启)
xdebug.log=/tmp/xdebug.log
xdebug.log_level=7
; 性能分析(可选)
; xdebug.mode=profile
; xdebug.output_dir=/tmp/profiler
; 路径映射(在 VSCode 中配置更灵活)
xdebug.remote_connect_back=0