|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /opt/alt/php82/usr/share/pear/test/Mail_Mime/tests/ |
Upload File : |
--TEST--
Bug #3488 Sleep/Wakeup EOL Consistency - Part 1
--SKIPIF--
--FILE--
<?php
require_once('Mail/mime.php');
$mm = new Mail_mime("\n");
$mm->setHTMLBody('<html></html>');
$mm->setTxtBody('Blah blah');
if (version_compare(phpversion(), "5.0.0", '<')) {
$mmCopy = $mm;
} else {
$mmCopy = clone($mm);
}
$mm->get();
$x = $mm->headers();
$smm = serialize(array('mm' => $mmCopy, 'header' => $x['Content-Type']));
$fp = fopen('sleep_wakeup_data', 'w');
fwrite($fp, $smm);
fclose($fp);
echo "Data written";
?>
--EXPECT--
Data written