当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP quoted_printable_encode()用法及代码示例


quoted_printable_encode()函数是PHP中的内置函数,用于将8位字符串转换为带引号的可打印字符串。

用法:

quoted_printable_encode( $str )

参数:该函数接受强制的单个参数$str。它表示需要转换的8位字符串。


返回值:此函数返回带引号的可打印字符串。

以下示例程序旨在说明PHP中的quoted_printable_encode()函数:

程序:

<?php 
  
// A simple PHP code to implement 
// quoted_printable_encode() function 
  
// Declare variable and initialize it 
$string = 'Hëllo World!'; 
  
echo (quoted_printable_encode($string)); 
?>
输出:
H=C3=83=C2=ABllo World!

应用:quoted_printable_encode()函数可在邮件系统中用于对任何邮件进行编码,然后在接收方使用quoted_printable_decode()对其进行解码。

相关文章:

参考: http://php.net/manual/en/function.quoted-printable-encode.php



相关用法


注:本文由纯净天空筛选整理自Smitha Dinesh Semwal大神的英文原创作品 PHP | quoted_printable_encode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。