PHP quoted_printable_encode() 函数
说明
quoted_printable_encode()
函数将 8 位字符串转换为带引号的可打印字符串。
下表总结了该函数的技术细节。
返回值: | 返回编码后的字符串。 |
---|---|
版本: | PHP 5.3.0+ |
语法
quoted_printable_encode()
函数的基本语法如下:
quoted_printable_encode(string);
下面的例子展示了 quoted_printable_encode()
函数的作用。
<?php
$str = "Hello\nWorld!"; // "\n" represent line feed or new line
echo quoted_printable_encode($str);
?>
注意:quoted-printable 编码用于表示主要由八位字节组成的数据,这些八位字节对应于 US-ASCII 字符集中的可打印字符。 它以这样一种方式对数据进行编码,使得生成的八位字节不太可能被邮件传输修改。
参数
quoted_printable_encode()
函数接受以下参数。
参数 | 说明 |
---|---|
string | 必填。 指定输入字符串。 |
Advertisements