Skip to content

Instantly share code, notes, and snippets.

@ksuzushima
Created October 11, 2017 07:32
Show Gist options
  • Save ksuzushima/59a2840b03d44904439bc3e0b49263b4 to your computer and use it in GitHub Desktop.
Save ksuzushima/59a2840b03d44904439bc3e0b49263b4 to your computer and use it in GitHub Desktop.
Visual Studio CodeでPHPを使う時のメモ

The language server needs at least PHP 7 installed. Version found: 5.6.30 言語モードをPHPにするエラーメッセージが表示される。 PHP7系以上が必要とのことだけど、環境に入ってるPHPのバージョンが足りない。
なので、MAMPで使われてるPHP7を指すことでエラーを回避することに。

ユーザー設定に以下を設定

// The path to a PHP 7+ executable.
"php.executablePath": "/Applications/MAMP/bin/php/php7.1.8/bin/php",

これでエラーはなくなる。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment