解决方案:
在VScode上方 文件 -> 首选项 -> 设置 中找到setting.json文件配置参数如下,红色部分为文件中所需添加部分.
{ "files.autoSave": "afterDelay", "workbench.colorTheme": "Visual Studio Dark", "liveServer.settings.CustomBrowser": "chrome", "liveServer.settings.donotShowInfoMsg": true,}
{
"files.autoSave": "afterDelay",
"workbench.colorTheme": "Visual Studio Dark",
"liveServer.settings.CustomBrowser": "chrome",
"liveServer.settings.donotShowInfoMsg": true,
"php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe",
"php.executablePath": "D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe"
}
成功解决。
目前的VS Code 插件PHP IntelliSense需要PHP版本为7.4.0以上,不然进入VS Code会有右下角提示,影响调试使用,更新完成后正常使用。
来源地址:https://blog.csdn.net/m0_65699647/article/details/123936883