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(),
私が間違っていることについて何か考えはありますか?
前もって感謝します、
明細書