|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /opt/cloudlinux/alt-php71/root/usr/share/pear/test/Mail_Mime/tests/ |
--TEST--
Bug #8541 mimePart.php line delimiter is \r
--SKIPIF--
--FILE--
<?php
$mime = file_get_contents('Mail/mime.php', 1);
$mimePart = file_get_contents('Mail/mimePart.php', 1);
if (strpos($mime, "\r")){
print("\\r found in mime.php\n");
}elseif (strpos($mime, "\t")){
print("\\t found in mime.php\n");
}elseif (strpos($mimePart, "\r")){
print("\\r found in mimePart.php\n");
}elseif (strpos($mimePart, "\t")){
print("\\t found in mimePart.php\n");
}
print('OK');
--EXPECT--
OK