php executable code example

Example 1: validate executable path vscode

/* File->Preferences->settings->User settings tab->extensions->from the drop down select php->on the right pane under PHP › Validate: Executable Path select edit in settings.json.

Then set the path as your case may be e.g for a xamp user who installed xammp on c drive you will have:
*/
"php.validate.executablePath": "c:\\xampp\\php\\php.exe"

/*  If php is installed in your system independently or by other means simply set the path of your php.exe file like below:
*/
"php.validate.executablePath": "C://path.to.your.php.folder//php.exe"

Example 2: php executable not found visual studio code ubuntu

sudo apt-get install php

Example 3: PHP executable not found. Install PHP 7 and add it to your PATH or set the php.executablePath setting

Step 1 : copy php.exe file locaton (Exp. C:\xampp\php)
Step 2 : Right click on This Pc -> Click on Properties
Step 3 : Click on Advance System setting -> Environment Veriabl
Step 4 : Doubble clik on path -> New 
Step 5 : Paste php.exe path -> ok -> ok Done...

Tags:

Php Example