mirror of
https://github.com/php/php-src.git
synced 2026-04-26 17:38:14 +02:00
39131219e8
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
17 lines
348 B
PHP
17 lines
348 B
PHP
--TEST--
|
|
Bug #45705 test #1 (imap rfc822_parse_adrlist() modifies passed address parameter)
|
|
--EXTENSIONS--
|
|
imap
|
|
--FILE--
|
|
<?php
|
|
|
|
$address = 'John Doe <john@example.com>';
|
|
var_dump($address);
|
|
imap_rfc822_parse_adrlist($address, '');
|
|
var_dump($address);
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(27) "John Doe <john@example.com>"
|
|
string(27) "John Doe <john@example.com>"
|