xdebug 2 to xdebug 3 port 預設由 9001 -> 9003 ref. https://xdebug.org/docs/upgrade_guide --- - vscode launch.json exmpale... ``` { "version": "0.2.0", "configurations": [ { "name": "Listen for > XDebug", "type": "php", "request": "launch", "port": 9003, "pathMappings": { "/var/www": "${workspaceRoot}" }, "log": true, "ignore": [ "**/vendor/**/*.php" ] } ] } ``` - PhpStorm 似乎改一下 port 就好了~
xdebug 2 to xdebug 3
port 預設由 9001 -> 9003
ref. https://xdebug.org/docs/upgrade_guide