php man page for mailparse_rfc822_parse_addresses

Query: mailparse_rfc822_parse_addresses

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

MAILPARSE_RFC822_PARSE_ADDRESSES(3)					 1				       MAILPARSE_RFC822_PARSE_ADDRESSES(3)

mailparse_rfc822_parse_addresses - Parse RFC 822 compliant addresses

SYNOPSIS
array mailparse_rfc822_parse_addresses (string $addresses)
DESCRIPTION
Parses a RFC 822 compliant recipient list, such as that found in the To: header.
PARAMETERS
o $addresses - A string containing addresses, like in: Wez Furlong <wez@example.com>, doe@example.com Note This string must not include the header name.
RETURN VALUES
Returns an array of associative arrays with the following keys for each recipient: +---------+---------------------------------------------------+ | | | |display | | | | | | | The recipient name, for display purpose. If this | | | part is not set for a recipient, this key will | | | hold the same value as address. | | | | | | | |address | | | | | | | The email address | | | | | | | |is_group | | | | | | | | | | TRUE if the recipient is a newsgroup, FALSE oth- | | | erwise. | | | | +---------+---------------------------------------------------+
EXAMPLES
Example #1 mailparse_rfc822_parse_addresses(3) example <?php $to = 'Wez Furlong <wez@example.com>, doe@example.com'; var_dump(mailparse_rfc822_parse_addresses($to)); ?> The above example will output: 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) } } PHP Documentation Group MAILPARSE_RFC822_PARSE_ADDRESSES(3)
Related Man Pages
wincache_ucache_get(3) - php
mysqlnd_qc_get_query_trace_log(3) - php
openssl_seal(3) - php
parse_ini_string(3) - php
parsekit_compile_string(3) - php
Similar Topics in the Unix Linux Community
Installing Opera 8 on FreeBSD
Troj_dropper.doe
pattern match question
Resending iTunes Gifts and Gift Certificates
Mv or cp with a . (dot)?