PHP

quoted_printable_decode

quoted_printable_decode

(PHP 4, PHP 5, PHP 7)

quoted_printable_decode - 将带引号的可打印字符串转换为8位字符串

描述

string quoted_printable_decode ( string $str )

该函数返回一个8位的二进制串,对应于解码后的可打印字符串(根据»RFC2045,第6.7节,而不是»RFC2821,第4.5.2节,因此附加周期不会从行首开始)。

该函数与imap_qprint()类似,但该函数不需要使用IMAP模块。

参数

str

输入字符串。

返回值

返回8位二进制字符串。

扩展内容

  • quoted_printable_encode() - 将8位字符串转换为带引号的可打印字符串

← printf

quoted_printable_encode →