Home  >  Article  >  Backend Development  >  Solution to PHP startup prompt when php starts_PHP tutorial

Solution to PHP startup prompt when php starts_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:10:48947browse

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...
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