Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 4065

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!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><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.mailparse-stream-encode.html">mailparse_stream_encode</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="book.vpopmail.html">vpopmail</a></div>
 <div class="up"><a href="ref.mailparse.html">Mailparse Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><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">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">array</span> <span class="methodname"><strong>mailparse_uudecode_all</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$fp</code></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">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">fp</code></em></span>
     <dd>

      <p class="para">
       A valid file pointer.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mailparse-uudecode-all-returnvalues">
  <h3 class="title">Return Values</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">Examples</h3>
  <p class="para">
   <div class="example" id="example-3387">
    <p><strong>Example #1  <span class="function"><strong>mailparse_uudecode_all()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><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>
</code></div>
    </div>

    <div class="example-contents"><p>The above example will output:</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><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.mailparse-stream-encode.html">mailparse_stream_encode</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="book.vpopmail.html">vpopmail</a></div>
 <div class="up"><a href="ref.mailparse.html">Mailparse Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>