>백엔드 개발 >PHP 튜토리얼 >Visual Studio Code提示"Use the 'php.validate.executablePath' setting to configure the locat.

Visual Studio Code提示"Use the 'php.validate.executablePath' setting to configure the locat.

WBOY
WBOY원래의
2016-06-20 12:25:471857검색

Visual Studio Code提示"Use the 'php.validate.executablePath' setting to configure the location of 'php'"的解决办法

Jun 14,2016 in 代码 lang read (4)

安装Visual Studio 2015时,顺便下载了Visual Studio Code,试用了一下感觉功能上还是比较完善的,和Sublime Text很像。但在打开php文件的时候,总是弹出提示信息:

Cannot validate the php file. The php program was not found. Use the 'php.validate.executablePath' setting to configure the location of 'php'

意思是无法找到php程序,无法验证php文件。使用 php.validate.executablePath 配置项指定php程序的位置。

配置步骤也很简单:

1、在菜单依次打开“文件”-“首选项”-“用户设置”

2、在左侧“默认设置”定位到 php.validate.executablePath (我这个版本的Visual Studio Code在662行),将配置信息复制到右侧setting.json中,并配置php.exe路径下。保存即可。

"php.validate.executablePath":"N://upupw//PHP5//php.exe",

最后由 Kent 编辑于2016年06月14日 22:36

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.