PHP » GoLang |
login |
register |
about
|
GoLang mailparse_rfc822_parse_addresses
request it (352)
GoLang replacement for PHP's mailparse_rfc822_parse_addresses
[edit | history]
PHP mailparse_rfc822_parse_addressesPHP original manual for mailparse_rfc822_parse_addresses [ show | php.net ]mailparse_rfc822_parse_addresses(PECL mailparse >= 0.9.0) mailparse_rfc822_parse_addresses — Parse RFC 822 compliant addresses Description
array mailparse_rfc822_parse_addresses
( string
$addresses
)Parses a » RFC 822 compliant recipient list, such as that found in the To: header. Parameters
Return ValuesReturns an array of associative arrays with the following keys for each recipient:
Examples
Example #1 mailparse_rfc822_parse_addresses() example
<?php The above example will output: 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) } } |
more
Recently updated
more
Most requested
more
Last requests
|