Mercurial > hg > rc1
annotate vendor/pear/mail_mime/tests/test_Bug_12466.phpt @ 15:459652c6089c
distro
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 09:44:19 -0500 |
parents | 1e000243b222 |
children |
rev | line source |
---|---|
0 | 1 --TEST-- |
2 Bug #12466 Content-Transfer-Encoding checking | |
3 --SKIPIF-- | |
4 --FILE-- | |
5 <?php | |
6 include("Mail/mime.php"); | |
7 | |
8 $params = array( | |
9 'text_encoding' => '7bit', | |
10 'html_encoding' => '7bit', | |
11 ); | |
12 $mime = new Mail_mime($params); | |
13 $mime->setTXTBody("ż"); | |
14 $mime->setHTMLBody("z"); | |
15 $body = $mime->getMessage(); | |
16 | |
17 preg_match_all('/Content-Transfer-Encoding: (.*)/', $body, $m); | |
18 echo trim($m[1][0])."\n".trim($m[1][1]); | |
19 | |
20 ?> | |
21 --EXPECT-- | |
22 quoted-printable | |
23 7bit |