Forum und email
mailparse_rfc822_parse_addresses

mailparse_rfc822_parse_addresses

(4.1.0 - 4.1.2 only, PECL)

mailparse_rfc822_parse_addresses -- Parse RFC 822 compliant addresses

Popis

array mailparse_rfc822_parse_addresses ( string addresses )

Parses a RFC 822 compliant recipient list, such as that found in the To: header.

Seznam parametrů

addresses

A string containing addresses, like in: Wez Furlong <[email protected]>, [email protected]

Poznámka: This string must not include the header name.

Návratové hodnoty

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.
addressThe email address
is_groupTRUE if the recipient is a newsgroup, FALSE otherwise.

Příklady

Příklad 1. mailparse_rfc822_parse_addresses() example

<?php

$to
= 'Wez Furlong <[email protected]>, [email protected]';
var_dump(mailparse_rfc822_parse_addresses($to));

?>

Výše uvedený příklad vypíše:

array(2) {
  [0]=>
  array(3) {
    ["display"]=>
    string(11) "Wez Furlong"
    ["address"]=>
    string(15) "[email protected]"
    ["is_group"]=>
    bool(false)
  }
  [1]=>
  array(3) {
    ["display"]=>
    string(15) "[email protected]"
    ["address"]=>
    string(15) "[email protected]"
    ["is_group"]=>
    bool(false)
  }
}