Home  >  Article  >  Backend Development  >  Does php need to configure environment variables?

Does php need to configure environment variables?

王林
王林Original
2019-09-16 17:53:316357browse

Does php need to configure environment variables?

Generally, when we use PHP, we do not need to configure environment variables. We only need to specify the ext path and include environment path of the extended component dll in PHP.ini.

However, if you need to use the command line mode of php, you need to configure environment variables. Next, I will introduce how to configure environment variables.

1. First, understand why you need to configure PHP’s environment variables

Because after configuring the environment variables, we can easily use PHP’s command line mode

2. First, take a look. When PHP environment variables are not configured, an error will be reported when running PHP in CMD command line mode, as shown in the figure

Does php need to configure environment variables?

3. Start configuring the PHP environment variables, find the directory where the PHP software is located, and then copy the path to the directory The directory should Contains the file PHP.EXE

Does php need to configure environment variables?

4. Right-click "My Computer" and select "Properties"

Does php need to configure environment variables?

5. Select "Advanced" --- "Environment Variables" from the pop-up "System Properties"

Does php need to configure environment variables?

6. In the environment variables window, select "Path"---"Edit"

Does php need to configure environment variables?

7. Finally, enter the semicolon PHP directory path at the end of the Path variable value

Does php need to configure environment variables?

8, After the input is completed, click Confirm in order to complete the setting. After completing the setting, open a new command line window, enter PHP and execute it. You can see that the next line is waiting. Enter, PHP environment variable configuration is successful

Does php need to configure environment variables?

Recommended tutorial: PHP video tutorial

The above is the detailed content of Does php need to configure environment variables?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn