How to install php extension under IIS

王林
Release: 2023-03-02 10:24:02
Original
2984 people have browsed it

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();
?>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!