PHP-IMAP 函數可幫助您訪問電子郵件帳戶,IMAP 代表I互聯網M艾爾A訪問權限Protocol 使用這些函數您還可以使用 NNTP、POP3 協議和本地郵箱訪問方法。
這個imap_8bit()函數接受一個表示 8 位字符串的字符串值作為參數,並將其轉換為可打印的字符串,用引號將其扭曲並返回結果。
imap_binary()function notranslate"> imap_8bit($str);參數
Sr.No | 參數及說明 |
---|---|
1 |
str (Mandatory) 這是一個字符串值,表示要轉換的 8 位字符串。 |
返回值
此函數返回一個字符串值,它是給定字符串的 quoted-printable 格式。
PHP版本
這個函數最初是在 PHP 版本 4 中引入的,並且適用於所有後續版本。
示例
以下是一個例子imap_8bit()函數 -
<html>
<body>
<?php
$str = "áéíóú";
$result = imap_8bit($str);
print($result);
?>
</body>
</html>
輸出
這會生成以下輸出 -
=C3=A1=C3=A9=C3=AD=C3=B3=C3=BA
示例
以下是上述函數的另一個例子 -
<html>
<body>
<?php
$str = "Alemán ąćęłńóśźż ĄĆĘŁŃÓŚŹŻ";
$result = imap_8bit($str);
print($result);
?>
</body>
</html>
輸出
這會生成以下輸出 -
Alem=C3=A1n =C4=85=C4=87=C4=99=C5=82=C5=84=C3=B3=C5=9B=C5=BA=C5=BC =C4=84= =C4=86=C4=98=C5=81=C5=83=C3=93=C5=9A=C5=B9=C5=BB
相關用法
- PHP imap_getsubscribed()用法及代碼示例
- PHP imap_header()用法及代碼示例
- PHP imap_last_error()用法及代碼示例
- PHP imap_mutf7_to_utf8()用法及代碼示例
- PHP imap_headerinfo()用法及代碼示例
- PHP imap_lsub()用法及代碼示例
- PHP imap_createmailbox()用法及代碼示例
- PHP imap_fetchtext()用法及代碼示例
- PHP imap_listmailbox()用法及代碼示例
- PHP imap_timeout()用法及代碼示例
- PHP imap_num_msg()用法及代碼示例
- PHP imap_undelete()用法及代碼示例
- PHP imap_mail_move()用法及代碼示例
- PHP imap_status()用法及代碼示例
- PHP imap_utf8_to_mutf7()用法及代碼示例
- PHP imap_clearflag_full()用法及代碼示例
- PHP imap_base64()用法及代碼示例
- PHP imap_close()用法及代碼示例
- PHP imap_listscan()用法及代碼示例
- PHP imap_mail()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - imap_8bit() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。