| Server IP : 74.208.236.52 / Your IP : 216.73.217.12 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/lib/php8.4/test/Mail_Mime/tests/ |
Upload File : |
--TEST--
Bug #11731 Full stops after soft line breaks are not encoded
--SKIPIF--
--FILE--
<?php
include("Mail/mime.php");
// Second full stop will be at the start of the second line after quoted-printable
// encoding (full stop '=2E' + 72 characters + line-continuation '=' = 76)
$text = '.123456789012345678901234567890123456789012345678901234567890123456789012.3456';
$params = Array(
'content_type' => 'text/plain',
'encoding' => 'quoted-printable',
);
$mimePart = new Mail_mimePart($text, $params);
$encoded = $mimePart->encode();
echo $encoded['body'];
--EXPECT--
=2E123456789012345678901234567890123456789012345678901234567890123456789012=
=2E3456