在 PHP V5.3 上安装 Xdebug 单步调试 ECShop

一些重要的配置文件以后参考,

VSCode 中的 launch.json 文件

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}

php.ini 文件中的配置

[Xdebug]
zend_extension=/www/server/php/53/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = feanlau.com
xdebug.remote_port = 9000
xdebug.profiler_enable = true
xdebug.profiler_enable_trigger = true
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "/work/temp/xdebug/"
xdebug.remote_autostart = 1