在 PHP 中,iconv_mime_decode()函數用於解碼 MIME 頭字段。這是 PHP 中的一個內置函數,從 PHP 5 版本開始使用。
用法
String iconv_mime_decode(string $string, int $mode, string $encoding)
參數
這個iconv_mime_decode()接受三個不同的參數 -$string,$mode和$encoding。$string和$mode是強製性參數,但$encoding是可選的。
$string −$string 參數用於編碼的標頭。它是一個 string-type 參數。
$mode −$mode 參數確定事件 iconv_mime_decode() 遇到格式錯誤的 MIME 標頭字段時的行為。我們可以指定 below-given 位掩碼的任意組合。
List of bitmasks acceptable to iconv_mime_decode_headers()
ICONV_MIME_DECODE_STRICT
ICONV_MIME_DECODE_CONTINUE_ON_ERROR
ICONV_MIME_DECODE_STRICT - 如果iconv_mime_decode_strict設置後,給定的標頭以完全一致的方式解碼,但默認情況下禁用此選項,因為許多損壞的郵件用戶代理不符合要求並且不生成正確的 MIME 標頭。
ICONV_MIME_DECODE_CONTINUE_ON_ERROR− 如果iconv_mime_decode_continue_on_error()參數設置後,它會嘗試忽略任何語法錯誤並繼續處理給定的標頭。
$encoding − encoding 是一個可選參數,用於指定表示結果的字符集。如果省略或為空,將使用 iconv.internal_encoding。
返回值
這個iconv_mime_decode()函數在成功時返回已解碼的 MIME 字段,如果在解碼過程中出現任何錯誤,則返回 False。
示例
<?php
// This yields "Sub:Preços Olà.txt"
echo iconv_mime_decode("Sub:=?utf-8?B?UHJlw4PCp29zIE9sw4PCoA==?=.txt ",
0, "ISO-8859-1");
?>
輸出
Sub:Preços Olà.txt
相關用法
- PHP iconv_mime_decode_headers()用法及代碼示例
- PHP iconv_mime_encode()用法及代碼示例
- PHP iconv_strlen()用法及代碼示例
- PHP iconv_substr()用法及代碼示例
- PHP iconv_set_encoding()用法及代碼示例
- PHP iconv_get_encoding()用法及代碼示例
- PHP iconv()用法及代碼示例
- PHP is_file( )用法及代碼示例
- PHP imagegif()用法及代碼示例
- PHP imageresolution()用法及代碼示例
- PHP imagebmp()用法及代碼示例
- PHP is_link( )用法及代碼示例
- PHP imap_getsubscribed()用法及代碼示例
- PHP is_link()用法及代碼示例
- PHP imagearc()用法及代碼示例
- PHP imageftbbox()用法及代碼示例
- PHP idate()用法及代碼示例
- PHP imagecreatefromgif()用法及代碼示例
- PHP imagecreatefrombmp()用法及代碼示例
- PHP imap_header()用法及代碼示例
注:本文由純淨天空篩選整理自Urmila Samariya大神的英文原創作品 PHP – How to decode a MIME header field using iconv_mime_decode() function?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。