當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP quoted_printable_encode()用法及代碼示例


quoted_printable_encode()函數是PHP中的內置函數,用於將8位字符串轉換為帶引號的可打印字符串。

用法:

quoted_printable_encode( $str )

參數:該函數接受強製的單個參數$str。它表示需要轉換的8位字符串。


返回值:此函數返回帶引號的可打印字符串。

以下示例程序旨在說明PHP中的quoted_printable_encode()函數:

程序:

<?php 
  
// A simple PHP code to implement 
// quoted_printable_encode() function 
  
// Declare variable and initialize it 
$string = 'Hëllo World!'; 
  
echo (quoted_printable_encode($string)); 
?>
輸出:
H=C3=83=C2=ABllo World!

應用:quoted_printable_encode()函數可在郵件係統中用於對任何郵件進行編碼,然後在接收方使用quoted_printable_decode()對其進行解碼。

相關文章:

參考: http://php.net/manual/en/function.quoted-printable-encode.php



相關用法


注:本文由純淨天空篩選整理自Smitha Dinesh Semwal大神的英文原創作品 PHP | quoted_printable_encode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。