FastAdmin 使用 phpmail 出现 spl_autoload_register 错误

Posted F4nniu 的随手记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FastAdmin 使用 phpmail 出现 spl_autoload_register 错误相关的知识,希望对你有一定的参考价值。

FastAdmin 使用 phpmail 出现 spl_autoload_register 错误

现象

意思是 __autoload() 已经废弃

问题来源于:https://ask.fastadmin.net/question/15169.html

帖子中里还有一个比较好的快速解决方法,但是如果使用 composer update 就失效了。

// 快速解决:将vendor/phpmailer/phpmailer/PHPMailerAutoload.php的第33-52行替换修改为:

  if (version_compare(PHP_VERSION, \'5.3.0\', \'>=\')) {
        spl_autoload_register(\'PHPMailerAutoload\', true, true);
    } else {
        spl_autoload_register(\'PHPMailerAutoload\');
    }

https://www.cnblogs.com/F4NNIU/p/11675489.html

以上是关于FastAdmin 使用 phpmail 出现 spl_autoload_register 错误的主要内容,如果未能解决你的问题,请参考以下文章

fastadmin隐藏表单字段延迟

fastadmin关联字段的显示及筛选

fastadmin 一键生成CRUD-特殊字符-关联字段

FastAdmin 发邮件时的一个有趣报错

fastadmin表单提交提示红色OK

phpmail的使用