【函数功能】
该函数把 8 位字符串转换为 quoted-printable 字符串。即用一些可打印常用字符,表示一个字节(8位)中所有非打印字符方法!
【函数语法】
quoted_printable_encode ($str)
【参数说明】
$str:必需,要转换的 8 位字符串。
【演示程序】
<?php
/**
* quoted_printable_encode ($str)
* **/
$str = "hello world,i am PHP!大家好,我是PHP!";
echo quoted_printable_encode($str);
?>
【输出结果】
hello world,i am PHP!=E5=A4=A7=E5=AE=B6=E5=A5=BD=EF=BC=8C=E6=88=91=E6=98= =AFPHP=EF=BC=81
【特别注意】
1.经过 quoted-printable 编码后的数据与通过邮件传输进行修改的不一样。完全 US-ASCII 的文本可进行 quoted-printable 编码,以确保通过文字翻译或线包网关进行消息传递时数据的完整性。
2.经过该函数编码的字符串可使用quoted_printable_decode()函数解码。
【原版定义】
/**
* Convert a 8 bit string to a quoted-printable string
* @link http://www.php.net/manual/en/function.quoted-printable-encode.php
* @param str string <p>
* The input string.
* </p>
* @return string the encoded string.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/1026/107.html