uTools-Manuals/docs/php/mailparse_uudecode_all.html
2019-04-08 23:22:26 +08:00

110 lines
6.0 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Scans the data from fp and extract each embedded uuencoded file</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.mailparse-uudecode-all" class="refentry">
<div class="refnamediv">
<h1 class="refname">mailparse_uudecode_all</h1>
<p class="verinfo">(PECL mailparse &gt;= 0.9.0)</p><p class="refpurpose"><span class="refname">mailparse_uudecode_all</span> &mdash; <span class="dc-title">
Scans the data from fp and extract each embedded uuencoded file
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.mailparse-uudecode-all-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>mailparse_uudecode_all</strong></span>
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$fp</code></span>
) : <span class="type">array</span></div>
<p class="para rdfs-comment">
Scans the data from the given file pointer and extract each embedded
uuencoded file into a temporary file.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.mailparse-uudecode-all-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">fp</code></dt>
<dd>
<p class="para">
A valid file pointer.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.mailparse-uudecode-all-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns an array of associative arrays listing filename information.
<table class="doctable informaltable">
<tbody class="tbody">
<tr>
<td><em>filename</em></td>
<td>Path to the temporary file name created</td>
</tr>
<tr>
<td><em>origfilename</em></td>
<td>The original filename, for uuencoded parts only</td>
</tr>
</tbody>
</table>
The first filename entry is the message body. The next entries are the
decoded uuencoded files.
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.mailparse-uudecode-all-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-4050">
<p><strong>Example #1 <span class="function"><strong>mailparse_uudecode_all()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br />$text&nbsp;</span><span style="color: #007700">=&nbsp;&lt;&lt;&lt;EOD<br /></span><span style="color: #DD0000">To:&nbsp;fred@example.com<br /><br />hello,&nbsp;this&nbsp;is&nbsp;some&nbsp;text&nbsp;hello.<br />blah&nbsp;blah&nbsp;blah.<br /><br />begin&nbsp;644&nbsp;test.txt<br />/=&amp;AI&lt;R!I&lt;R!A('1E&lt;W0*<br />`<br />end<br /><br /></span><span style="color: #007700">EOD;<br /><br /></span><span style="color: #0000BB">$fp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">tmpfile</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">fwrite</span><span style="color: #007700">(</span><span style="color: #0000BB">$fp</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$text</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$data&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mailparse_uudecode_all</span><span style="color: #007700">(</span><span style="color: #0000BB">$fp</span><span style="color: #007700">);<br /><br />echo&nbsp;</span><span style="color: #DD0000">"BODY\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">readfile</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">"filename"</span><span style="color: #007700">]);<br />echo&nbsp;</span><span style="color: #DD0000">"UUE&nbsp;(</span><span style="color: #007700">{</span><span style="color: #0000BB">$data</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">][</span><span style="color: #DD0000">'origfilename'</span><span style="color: #007700">]}</span><span style="color: #DD0000">)\n"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">readfile</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">][</span><span style="color: #DD0000">"filename"</span><span style="color: #007700">]);<br /><br /></span><span style="color: #FF8000">//&nbsp;Clean&nbsp;up<br /></span><span style="color: #0000BB">unlink</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">"filename"</span><span style="color: #007700">]);<br /></span><span style="color: #0000BB">unlink</span><span style="color: #007700">(</span><span style="color: #0000BB">$data</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">][</span><span style="color: #DD0000">"filename"</span><span style="color: #007700">]);<br /><br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程会输出:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
BODY
To: fred@example.com
hello, this is some text hello.
blah blah blah.
UUE (test.txt)
this is a test
</pre></div>
</div>
</div>
</p>
</div>
</div></div></div></body></html>