| Server IP : 104.21.37.246 / Your IP : 104.23.243.33 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/alt-php56/root/usr/share/pear/test/Mail_Mime/tests/ |
Upload File : |
--TEST--
Bug GH-19 Test boundary value with different headers()/get() call order
--SKIPIF--
--FILE--
<?php
include "Mail/mime.php";
// Test get() before headers()
$mime = new Mail_mime("\r\n");
$mime->setHTMLBody('html');
$mime->setTXTBody('text');
$body = $mime->get();
$hdrs = $mime->headers(array(
'From' => '[email protected]',
'Subject' => 'Subject',
'To' => '[email protected]'
));
preg_match('/boundary="([^"]+)/', $hdrs['Content-Type'], $matches);
$boundary = $matches[1];
echo substr_count($body, "--$boundary") . "\n";
// Test headers() before get()
$mime = new Mail_mime("\r\n");
$mime->setHTMLBody('html');
$mime->setTXTBody('text');
$hdrs = $mime->headers(array(
'From' => '[email protected]',
'Subject' => 'Subject',
'To' => '[email protected]'
));
$body = $mime->get();
preg_match('/boundary="([^"]+)/', $hdrs['Content-Type'], $matches);
$boundary = $matches[1];
echo substr_count($body, "--$boundary");
--EXPECT--
3
3