quoted_printable_decode()函數是PHP中的內置函數,用於將PHP中帶引號的可打印字符串解碼為8位字符串。
用法:
string quoted_printable_decode( $str )
參數:該函數接受強製的單個參數$str。它代表需要查找8位字符串的字符串。
返回值:此函數返回8位二進製字符串。
以下示例程序旨在說明PHP中的quoted_printable_decode()函數:
程序:
<?php
// A simple PHP code to implement
// quoted_printable_decode() function
// Declare variable and initialize it
$String = '=0D=0Ageeksforgeeks';
echo (quoted_printable_decode($String));
?>
輸出:
geeksforgeeks
應用程序:此函數用於PHP中的郵件處理。郵件很多時候都由帶引號的可打印內容組成,例如= 0A,= 0D等。因此,PHP提供了內置函數來處理此類郵件,以產生普通的8位字符串。
參考: http://php.net/manual/en/function.quoted-printable-decode.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Smitha Dinesh Semwal大神的英文原創作品 PHP | quoted_printable_decode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。