我們在使用
一般這種問題出現的原因是 mail() 函數的 header 參數裡少了 Content-type: text/html; charset=utf-8,或者 charset 不是utf-8。很多國外的PHP程序一開始開發的時候沒有吧中文考慮進去,所以中文使用的時候就會出現PHP mail()函數亂碼。
先用函數base64_encode() 使用 MIME base64 對數據進行編碼
標題字符串前加編碼類型例如: =?UTF-8?B?
當然如果是gb2312的話就 =?GB2312?B?
標題字符串後加:?=
PHP mail()函數亂碼的處理辦法舉例如下
- $to = '[email protected]';
- $subject = "=?UTF-8?B?".
base64_encode('郵件標題')."?=";- $headers = 'MIME-Version: 1.0' . "rn";
- $headers .= 'Content-type:
text/html; charset=utf-8' . "rn";- // Additional headers
- $headers .= 'To: Xinple <
< a href="mailto:[email protected]">
[email protected]</a>>' . "rn";- $headers .= 'From: Admin <
<a href="mailto:[email protected]">
[email protected]</a>>' . "rn";- $headers .= 'Reply-To: Xinple <xinple@example>' . "rn";
- mail($to, $subject, $message, $headers);
以上就是PHP mail()函數亂碼的具體處理辦法,希望對有需要的朋友有所幫助。