mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
10 lines
215 B
PHP
10 lines
215 B
PHP
--TEST--
|
|
imap_rfc822_write_address() : basic functionality
|
|
--EXTENSIONS--
|
|
imap
|
|
--FILE--
|
|
<?php
|
|
var_dump(imap_rfc822_write_address('me', 'example.com', 'My Name'));
|
|
?>
|
|
--EXPECT--
|
|
string(24) "My Name <me@example.com>"
|