Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
opt
/
alt
/
php56
/
usr
/
share
/
pear
/
test
/
Mail_Mime
/
tests
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//opt/alt/php56/usr/share/pear/test/Mail_Mime/tests/test_Bug_21098.phpt
--TEST-- Bug #21098 Handling of empty plain text parts --SKIPIF-- --FILE-- <?php include "Mail/mime.php"; $mime = new Mail_mime(); $mime->setTxtBody(''); $mime->setHTMLBody('<html></html>'); $headers1 = $mime->txtHeaders(); $body = $mime->get(); $headers2 = $mime->txtHeaders(); print strpos($headers1, 'text/html') && strpos($headers2, 'text/html') ? 'OK' : 'NOT OK'; --EXPECT-- OK