我的「PHPMailer」資料夾放在Thinkphp框架裡面的Library裡面的Vendor。 瀏覽器報錯是:
可是遊標定位到SendMail函數呼叫處,按下ctrl+左擊,函數可以定位到函數定義處。
vendor('PHPMailer/class.phpmailer');
vendor('檔案入口名');
require_once($_SERVER['DOCUMENT_ROOT']."/PHPMailer/class.phpmailer.php")
這麼引用試試(路徑要寫完整)
是tp3吧? 你這個報錯是說明沒有實例化到類別。
Vendor('PHPMailer.PHPMailerAutoload'); $mail = new PHPMailer(); //实例化 $mail->sendmail(...);
Vendor('PHPMailer.PHPMailerAutoload'); $mail = new PHPMailer(); //實例化
問題在於sendmailer函數寫在function.php檔案裡,不能寫在common.php檔裡。這樣就能調用到了。
vendor('PHPMailer/class.phpmailer');
vendor('檔案入口名');
這麼引用試試(路徑要寫完整)
是tp3吧?
你這個報錯是說明沒有實例化到類別。
Vendor('PHPMailer.PHPMailerAutoload');
$mail = new PHPMailer(); //實例化
問題在於sendmailer函數寫在function.php檔案裡,不能寫在common.php檔裡。這樣就能調用到了。