(PECL mailparse >= 0.9.0)
mailparse_stream_encode — 从源文件指针流式传输数据,应用编码并写入 destfp
从源文件指针流式传输数据,应用 encoding
并写入目标文件指针。
示例 #1 mailparse_stream_encode() 示例
<?php
// email.eml 内容: hello, this is some text=hello.
$fp = fopen('email.eml', 'r');
$dest = tmpfile();
mailparse_stream_encode($fp, $dest, "quoted-printable");
rewind($dest);
// 显示新文件内容
fpassthru($dest);
?>
以上示例将输出
hello, this is some text=3Dhello.