Solution to PHP startup prompt when php starts_PHP tutorial

WBOY
Release: 2016-07-21 15:10:48
Original
934 people have browsed it

I am learning PHP recently. After configuring the PHP environment, I get a warning saying PHP startup every time I turn on the computer. As shown below:
Solution to PHP startup prompt when php starts_PHP tutorial
Obviously this is a small problem, about php configuration.
Solving this problem is very simple. Just modify the extension_dir configuration in the php.ini file.
Place

Copy the code The code is as follows:

; extension_dir = "ext"

Change to
Copy the code The code is as follows:

extension_dir = "D:/myphpenv/php5.4/ext"

D:/myphpenv/php5.4/ is the php installation directory.
Restart apache and find that the warning is gone.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327011.htmlTechArticleI am learning PHP recently. After configuring the PHP environment, there is a warning saying PHP startup every time I turn on the computer. As shown below: Obviously this is a small problem, it is about php configuration. Solving this problem is simple...
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!