Mercurial > hg > rc1
annotate vendor/pear/mail_mime/tests/test_Bug_9722_1.phpt @ 39:ee07fb3afb1b
no symlink
| author | Charlie Root |
|---|---|
| date | Sat, 29 Dec 2018 07:00:00 -0500 |
| parents | 1e000243b222 |
| children |
| rev | line source |
|---|---|
| 0 | 1 --TEST-- |
| 2 Bug #9722 quotedPrintableEncode does not encode dot at start of line on Windows platform | |
| 3 --SKIPIF-- | |
| 4 --FILE-- | |
| 5 <?php | |
| 6 include("Mail/mimePart.php"); | |
| 7 $text = "This | |
| 8 is a | |
| 9 test | |
| 10 ... | |
| 11 It is | |
| 12 //really fun// | |
| 13 to make :("; | |
| 14 | |
| 15 print_r(Mail_mimePart::quotedPrintableEncode($text, 76, "\n")); | |
| 16 | |
| 17 --EXPECT-- | |
| 18 This | |
| 19 is a | |
| 20 test | |
| 21 =2E.. | |
| 22 It is=20 | |
| 23 //really fun// | |
| 24 to make :( |
