我正在尝试动态设置 codeigniter 构造函数,但遇到了困难。我的控制器中有:
$arguments=array('login'=>'***','pass'=>'***'); ;
$this->load->library('mailer', $arguments);
$phpmail = new Mailer;
$phpmail->sendmail('***', 'bob', 'hi', 'there');
我的构造函数第一行如下所示:
public function __construct($login,$pass)
但我得到以下信息:
Message: Missing argument 1 for Mailer::__construct(),
任何想法我做错了什么?
提前致谢,
账单