Home>Article>Development Tools> Detailed explanation of the steps for configuring the PHP running environment for the first time with PHPstorm
The first installationphpstormcannot run the PHP file because the environment is not configured good.
Below I will configure the PHP operating environment withPHPstorm and wampserver
Note: The prerequisite is that your wampserver or other servers can run normally
1. After the installation is complete, open PHPstorm and select the upper left cornerfile->settings
2. Selectlanguages&frameworks->php
3. Click on the back…
## 4. Click on
±>local path…
5. Click the
folder icon after PHP executable
6. Select you
php.exe in the PHP folder in the bin directory under wampserver, click ok (my file path: D:\wamp64\bin\php\php5.6.16\php.exe)
7. Next, you can test whether PHP can run. For example, I output a multiplication table
"; }
The above is the detailed content of Detailed explanation of the steps for configuring the PHP running environment for the first time with PHPstorm. For more information, please follow other related articles on the PHP Chinese website!