mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-20 02:48:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297028 c90b9560-bf6c-de11-be94-00142212c4b1
137 lines
3.3 KiB
XML
137 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xml:id="function.mailparse-rfc822-parse-addresses" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>mailparse_rfc822_parse_addresses</refname>
|
|
<refpurpose>Parse RFC 822 compliant addresses</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>mailparse_rfc822_parse_addresses</methodname>
|
|
<methodparam><type>string</type><parameter>addresses</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Parses a <link xlink:href="&url.rfc;822">RFC 822</link> compliant recipient
|
|
list, such as that found in the <literal>To:</literal> header.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>addresses</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
A string containing addresses, like in:
|
|
<literal>Wez Furlong <wez@example.com>, doe@example.com</literal>
|
|
</para>
|
|
<note>
|
|
<para>
|
|
This string must not include the header name.
|
|
</para>
|
|
</note>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Returns an array of associative arrays with the following keys for each
|
|
recipient:
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<tbody>
|
|
<row>
|
|
<entry><literal>display</literal></entry>
|
|
<entry>
|
|
The recipient name, for display purpose. If this part is not set for a
|
|
recipient, this key will hold the same value as
|
|
<literal>address</literal>.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>address</literal></entry>
|
|
<entry>The email address</entry>
|
|
</row>
|
|
<row>
|
|
<entry><literal>is_group</literal></entry>
|
|
<entry>&true; if the recipient is a newsgroup, &false; otherwise.</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>mailparse_rfc822_parse_addresses</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$to = 'Wez Furlong <wez@example.com>, doe@example.com';
|
|
var_dump(mailparse_rfc822_parse_addresses($to));
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
array(2) {
|
|
[0]=>
|
|
array(3) {
|
|
["display"]=>
|
|
string(11) "Wez Furlong"
|
|
["address"]=>
|
|
string(15) "wez@example.com"
|
|
["is_group"]=>
|
|
bool(false)
|
|
}
|
|
[1]=>
|
|
array(3) {
|
|
["display"]=>
|
|
string(15) "doe@example.com"
|
|
["address"]=>
|
|
string(15) "doe@example.com"
|
|
["is_group"]=>
|
|
bool(false)
|
|
}
|
|
}
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|