即使安装了 php-pear,Php 也会在加载“Mail/mimeDecode”时发生致命错误

即使安装了 php-pear,Php 也会在加载“Mail/mimeDecode”时发生致命错误

我有一台 centos 机器,我使用 yum install php-pear 进行安装。所以我在我的 php 页面中尝试了这个

require_once 'Mail/RFC822.php';
require_once 'Mail/mimeDecode.php';

我收到此错误“ Warning: require_once(Mail/mimeDecode.php): failed to open stream: No such file or directory in /var/www/html/pro1/ast/include.inc.php on line 36 Fatal error: require_once(): Failed opening required 'Mail/mimeDecode.php' (include_path='.:/usr/share/pear:/usr/share/php') in /var/www/html/pro1/ast/include.inc.php on line 36”。还需要安装什么?

答案1

为了其他人的利益。除了执行 yum install php-pear。下一步是 pear install Mail,最后你需要 yum install php-pear-Mail-mimeDecode。到目前为止,这对我很有帮助。

答案2

为了完整起见,首先安装梨包,然后跟进邮件Mail_mime作为:

dnf install php-pear-Mail
pear install Mail Mail_Mime

这应该适用于 CentoOS 或 Rocky Linux;如果不支持 dnf,请使用 yum。

相关内容