mailparse_uudecode_all

(PECL mailparse >= 0.9.0)

mailparse_uudecode_all 扫描 fp 中的数据并提取每个嵌入式 uuencoded 文件

说明

mailparse_uudecode_all(资源 $fp): 数组

扫描给定文件指针中的数据,并将每个嵌入式 uuencoded 文件提取到临时文件中。

参数

fp

一个有效的文件指针。

返回值

返回一个关联数组,其中列出了文件名信息。

filename 创建的临时文件的路径
origfilename 原始文件名,仅适用于 uuencoded 部分
第一个文件名条目是消息正文。接下来的条目是解码后的 uuencoded 文件。

示例

示例 #1 mailparse_uudecode_all() 示例

<?php

$text
= <<<EOD
To: [email protected]

hello, this is some text hello.
blah blah blah.

begin 644 test.txt
/=&AI<R!I<R!A('1E<W0*
`
end

EOD;

$fp = tmpfile();
fwrite($fp, $text);

$data = mailparse_uudecode_all($fp);

echo
"BODY\n";
readfile($data[0]["filename"]);
echo
"UUE ({$data[1]['origfilename']})\n";
readfile($data[1]["filename"]);

// 清理
unlink($data[0]["filename"]);
unlink($data[1]["filename"]);

?>

以上示例将输出

BODY
To: [email protected]

hello, this is some text hello.
blah blah blah.

UUE (test.txt)
this is a test

添加笔记

用户贡献笔记 1 个笔记

mat at phpconsulting dot com
21 年前
作为一种替代方法,uudecode() 可以作为静态函数调用,如下所示

$file =& Mail_mimeDecode::uudecode($some_text);

这将返回以下数组
@param string 要查找附件的输入正文
@return array 解码后的正文、文件名和权限
To Top