config root man

Current Path : /usr/local/share/pear/test/Mail_Mime/tests/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/pear/test/Mail_Mime/tests/test_Bug_9722_1.phpt

--TEST--
Bug #9722   _quotedPrintableEncode does not encode dot at start of line on Windows platform
--SKIPIF--
--FILE--
<?php
include("Mail/mimePart.php");
$part = new Mail_mimePart('', array('eol'=>"\n"));
$text = "This
is a
test
...
    It is 
//really fun//
to make :(";

print_r($part->_quotedPrintableEncode($text));

--EXPECT--
This
is a
test
=2E..
    It is=20
//really fun//
to make :(

Man Man