请输入您要查询的百科知识:

 

词条 quoted_printable_decode
释义

定义和用法

quoted_printable_decode() 函数对经过 quoted-printable 编码后的字符串进行解码,返回 8 位的字符串。

该函数类似于 imap_qprint() 函数。不同的是,应用 imap_qprint() 函数需要让系统加载 IMAP 模块,而本函数不需要加载 IMAP 模块。

语法

quoted_printable_decode(string)

参数 描述

string 必需。规定要解码的 quoted-printable 字符串。

例子

在本例中,应用 quoted_printable_decode() 函数对经过 quoted-printable 编码后的字符串 "=0A" 进行解码,并返回 8 位的字符串:

<?php
$str = "Hello=0Aworld.";
echo quoted_printable_decode($str);
?>输出:

Hello world.HTML 源代码:

Hello world.PHP String 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/31 2:04:09