添加新的 PHP 模块
我的 IMAP PHP 模块安装有问题,想尝试再次安装此模块而不重新编译 PHP(这可能吗?),或者至少查看所有 PHP 模块的配置。在进行了一些谷歌搜索后,我仍然不知道如何:
- 如果可能的话,在不重新编译 PHP 的情况下安装新的 PHP 模块。
- 配置已安装的 PHP 模块。
我注意到 IMAP 模块出现在带有 但不会在命令行上与
php -i
一起出现。
任何帮助将不胜感激。谢谢你!
I am having problems with my IMAP PHP module installation and want to try either installing this module again without recompiling PHP (is this possible?) or at least look at the configuration of all of the PHP modules. After doing some Googling, I am still at a loss as to how to:
- Install new PHP modules without recompiling PHP, if possible.
- Configure the installed PHP modules.
I notice that the IMAP module appears on a webpage with <?php php_info(); ?>
but does NOT appear with php -i
on the command line.
Any help would be appreciated. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
php -i
输出中引用的 ini 文件。 CLI 使用不同的 php.ini 文件,您可能需要在该 php.ini 中启用该模块。Check the ini file(s) referenced in the output of
php -i
. The CLI uses a different php.ini file, and you may need to enable the module in that php.ini.