问题:
Visual Studio Code 安装php插件后提示:
PHP executable not found. Install PHP 7 and add it to your PATH or set the php.executablePath setting
解决办法:
- 打开VS Code 点击左下角的管理图标(如图左下角),点击“设置”,
- 在搜索框中输入
php.validate.executablePath
进行搜索,点击结果中的“在setting.json中编辑”,打开setting.json - 查找到php.validate.executablePath进行修改,其值是php安装目录。
"php.validate.executablePath": "D:\\phpstudy_pro\\Extensions\\php\\php7.3.4nts"
转载自:清风博客 » Visual Studio(VS) Code提示php.executablePath配置问题