0
我有下面的代碼,當我把它放在任何空白的PHP頁面,但當我嘗試把代碼放在另一個PHP頁面,其中我已經有一些代碼在其中,我得到的錯誤:ERRNO:8192當試圖發送郵件
ERRNO: 8192 TEXT: Assigning the return value of new by reference is deprecated LOCATION: C:\xampp\php\PEAR\Mail.php, line 154,
include('Mail.php');
$mail = Mail::factory("mail");
$headers = array("From"=>"[email protected]", "Subject"=>"Your order has been placed ");
$body = "lol";
$mail->send("[email protected]", $headers, $body);
我在哪裏輸入以上內容? – chupinette 2010-04-10 08:34:42
在命令行中。你是如何獲得你已有的PEAR :: Mail版本的?你沒有使用'pear install Mail'嗎? – VolkerK 2010-04-10 08:38:15
不..我安裝了xampp。 – chupinette 2010-04-10 08:52:13