10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Brackets :エラー解決】PHPランタイムが見つかりません。PHPランタイムを設定して.....

Posted at

#エラー
PHPの学習を始めようと思い、サンプルコードを打ちながら進めていました。
エディタはBracketを使用しているのですが、PHPのコードを書こうと思ったら以下のエラーがでてきました。
👇
aaaaa.png

#解決
PHPのアプリケーションのフォルダパスを探して、自分の場合は以下のpath👇
C:\\MAMP\\bin\\php\\php7.2.10\\php.exe

あとは、以下のコードを brackets.jsonファイルに貼る。


 "php": {
        "enablePhpTooling": true,
	"executablePath": "自分のPHPアプリのpath",
	"memoryLimit": "4095M",
	"validateOnType": "false" 
    }

解決!!!

#注意点

●上のコードを貼る際に、
  ✖ defaultPreferences.json ではなく、
  :qiitan: brackets.json(画像の青い部分)

●JSONファイルでは Key-Value的に書くので、もともとのかっこ{}の中に"php:{}"を入れる(画像青い部分を確認)

2019-06-23 (1).png
10
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?