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:
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.
http://www.bkjia.com/PHPjc/327011.htmlwww.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...