|
mailparse_rfc822_parse_addressesParse RFC 822 compliant addresses Beschreibung
array mailparse_rfc822_parse_addresses
( string
$addresses
)Parses a » RFC 822 compliant recipient list, such as that found in the To: header. Parameter-Liste
RückgabewerteReturns an array of associative arrays with the following keys for each recipient:
Beispiele
Beispiel #1 mailparse_rfc822_parse_addresses example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
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)
}
}
|