Mercurial > hg > rc1
view vendor/pear/mail_mime/tests/test_Bug_21206.phpt @ 15:459652c6089c
distro
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 09:44:19 -0500 |
parents | 1e000243b222 |
children |
line wrap: on
line source
--TEST-- Bug #21206 Handling quoted strings --SKIPIF-- --FILE-- <?php require_once('Mail/mimePart.php'); class X extends Mail_mimePart { public static function explodeQuotedString($delimiter, $string){ return Mail_mimePart::explodeQuotedString($delimiter, $string); } } $tests = [ '"a" <a@a.a>, b <b@b.b>', '"c\\\\" <c@c.c>, d <d@d.d>', ]; foreach ($tests as $test) { $addrs = X::explodeQuotedString('[\t,]', $test); foreach ($addrs as $addr) { print trim($addr) . PHP_EOL; } } ?> --EXPECT-- "a" <a@a.a> b <b@b.b> "c\\" <c@c.c> d <d@d.d>