mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
108 lines
4.2 KiB
HTML
108 lines
4.2 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>Returns a properly formatted email address given the mailbox, host, and personal info</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.imap-rfc822-write-address" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">imap_rfc822_write_address</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">imap_rfc822_write_address</span> — <span class="dc-title">Returns a properly formatted email address given the mailbox, host, and personal info</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.imap-rfc822-write-address-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>imap_rfc822_write_address</strong></span>
|
|
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$mailbox</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$host</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$personal</code></span>
|
|
) : <span class="type">string</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Returns a properly formatted email address as defined in <a href="http://www.faqs.org/rfcs/rfc2822" class="link external">» RFC2822</a> given the needed information.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.imap-rfc822-write-address-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">mailbox</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The mailbox name, see <span class="function"><a href="imap_open.html" class="function">imap_open()</a></span> for more
|
|
information
|
|
</p>
|
|
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">
|
|
Passing untrusted data to this parameter is <em class="emphasis">insecure</em>, unless
|
|
<a href="imap.configuration.html#ini.imap.enable-insecure-rsh" class="link">imap.enable_insecure_rsh</a> is disabled.
|
|
</p></div>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">host</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The email host part
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">personal</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The name of the account owner
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.imap-rfc822-write-address-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns a string properly formatted email address as defined in <a href="http://www.faqs.org/rfcs/rfc2822" class="link external">» RFC2822</a>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.imap-rfc822-write-address-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-4035">
|
|
<p><strong>Example #1 <span class="function"><strong>imap_rfc822_write_address()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">imap_rfc822_write_address</span><span style="color: #007700">(</span><span style="color: #DD0000">"hartmut"</span><span style="color: #007700">, </span><span style="color: #DD0000">"example.com"</span><span style="color: #007700">, </span><span style="color: #DD0000">"Hartmut Holzgraefe"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
<div class="example-contents"><p>以上例程会输出:</p></div>
|
|
<div class="example-contents screen">
|
|
<div class="cdata"><pre>
|
|
Hartmut Holzgraefe <hartmut@example.com>
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |