vscode编辑器Go Live出现提示“无法验证,因为找不到PHP安装php”

使用vscode编辑器,安装了Live Server(Five Server)扩展,点击“Go Live”按钮Open Five Server时右下角出现弹窗消息:

无法验证,因为找不到 PHP 安装。使用设置 "php.validate.executablePath" 来配置 PHP 可执行文件。

vscode-live-server-php-validate-executablepath-01.jpg

出现这个提示的原因是没有安装PHP开发环境或者没有指定 php.exe 执行文件的路径。解决方法也很简单,如果没有安装 PHP 环境就安装环境,不会配置的可以直接安装个 php 集成环境软件(如xampp);如果已经安装了 PHP 环境,就设置变量 php.validate.executablePath

操作步骤:

1、点击vscode左下角的“管理”图标,在打开的菜单中选择“设置”,在搜索框里输入“php.validate.executablePath”进行搜索,搜索结果如下:(也可以直接点击弹出窗口的“打开设置”按钮直达)

vscode-live-server-php-validate-executablepath-02.jpg

2、点击“在 settings.json 中编辑”打开settings.json编辑界面,添加php.validate.executablePath变量,值是 php.exe 的绝对路径,如下:

{    
    "php.validate.executablePath": "C:/xampp/php/php.exe"
}

保存后,重启vscode,再执行Open Five Server就不会再出现无法验证的窗口消息了。

PS:使用Live Server(Five Server)也要配置 fiveServer.php.executablefiveServer.php.ini,也可以一并处理。

关键词: php xampp vscode编辑器