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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。