I tried like
$this->obj->load->library('phpmailer');
$this->obj->load->library('phpmailer/class.phpmailer');
但它会导致php错误。请提出解决方案。
答案 0 :(得分:0)
为此创建自定义加载程序。您可以在codeigniter的github站点上找到如何在codeigniter教程中扩展数据库类,从该教程中您可以了解最新情况,然后您可以实现如何创建自定义库加载器,如果不是您可以使用“核心”文件夹,它是库的自动加载器。检查codeigniter的文档。
检查以下链接:
答案 1 :(得分:0)
转到phpmailer库并输入此说明
include('phpmailer/class.phpmailer.php');
你的phpmailer和文件夹phpmailer应该驻留在库文件夹中。你的phpmailer文件夹应该包含文件class.phpmailer.php。现在叫它
$this->load->library('phpmailer ');
完成!