1
我寫了這個代碼來發送郵件笨呼叫從一個成員函數()一個非對象在我的郵件設置
$this->mailconfig['mailtype']='text';
$this->load->library('email', $this->mailconfig);
$this->email->from('[email protected]','Tony');
$this->email->to($this->mail);
$this->email->subject('PASSWORD');
$this->email->message('Your password is:' . $password);
$this->email->send();
但我得到了一個錯誤,因爲PHP致命錯誤:調用到()中的成員函數
好知道它是爲你工作 – 2012-04-25 13:22:27