您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

launch.json 415B

123456789101112131415
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Listen for XDebug",
  9. "type": "php",
  10. "request": "launch",
  11. "port": 9003,
  12. "pathMappings": { "/src": "${workspaceRoot}" }
  13. }
  14. ]
  15. }