Home  >  Article  >  Backend Development  >  How to install php extension under IIS

How to install php extension under IIS

王林
王林Original
2020-07-10 14:35:342981browse

The method to install php extension under IIS is: 1. Download php and add the directory to the Path variable; 2. Rename the php.ini-development file to php.ini; 3. Open the IIS management tool , add module mapping; 4. Test whether the installation is complete.

How to install php extension under IIS

Specific steps:

(Recommended tutorial: php tutorial)

Step one: Download PHP

The windows version of PHP directly provides a compressed package, which includes all the files required for operation, which can be downloaded from the official website.

Step 2: Configure PHP

First select a directory to decompress;

How to install php extension under IIS

Then add this directory ("E:\PHP" in this article) is added to the Path constant;

Finally, make a copy of the "php.ini-development" file and rename the copy to "php.ini". Can.

Step Three: Introduce IIS

First open the IIS management tool and select "Process Application Mapping"

How to install php extension under IIS

Select "Add Module Mapping" in the new interface

How to install php extension under IIS

Fill in the information as follows:

How to install php extension under IIS

Click OK, like this IIS installation of PHP extension is completed.

Step 4: Test

Create a new test.php file in the default website directory

<?php
phpinfo();
?>

Then open the browser and visit localhost\test. php, the following information is displayed to indicate that the installation is successful.

How to install php extension under IIS

The above is the detailed content of How to install php extension under IIS. 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