PHP Warning: PHP Startup: ????????: Unable to initialize module(PHP 警告:PHP 启动:????????:无法初始化模块)
问题描述
将php从5.1升级到5.2.10后,我在php -v
时收到以下警告:
After upgrading php from 5.1 to 5.2.10, I got the following warnings when php -v
:
我该如何解决?谢谢!
推荐答案
看起来您还没有升级 PHP 模块,它们不兼容.
Looks like you haven't upgraded PHP modules, they are not compatible.
检查 php.ini 中的 extension_dir
指令.它应该指向包含 5.2 模块的文件夹.
Check extension_dir
directive in your php.ini. It should point to folder with 5.2 modules.
创建并打开一个 phpinfo 文件并搜索 extension_dir
以找到路径.
Create and open a phpinfo file and search for extension_dir
to find the path.
由于您确实升级了,因此您可能正在使用指向 5.1 模块的旧 php.ini
Since you did upgrade, there is a chance that you are using old php.ini that is pointing to 5.1 modules
这篇关于PHP 警告:PHP 启动:????????:无法初始化模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!