您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1506 复制当前网址

quoted_printable_decode



PHP 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.



文章来源:https://liqingbo.com/blog-836.html

上一篇:quotemeta

下一篇:printf

评论