2002-11-23 13:26:18 +08:00
|
|
|
|
--TEST--
|
|
|
|
|
mb_send_mail() test 7 (lang=Korean)
|
|
|
|
|
--SKIPIF--
|
|
|
|
|
<?php
|
2012-04-10 17:47:18 +08:00
|
|
|
|
if (substr(PHP_OS, 0, 3) == 'WIN') {
|
|
|
|
|
die('skip.. Not valid for Windows');
|
2011-09-11 21:04:21 +08:00
|
|
|
|
}
|
2006-06-27 08:09:23 +08:00
|
|
|
|
if (!function_exists("mb_send_mail") || !mb_language("Korean")) {
|
2002-11-23 13:26:18 +08:00
|
|
|
|
die("skip mb_send_mail() not available");
|
|
|
|
|
}
|
|
|
|
|
if (!@mb_internal_encoding('ISO-2022-KR')) {
|
2004-12-16 20:34:32 +08:00
|
|
|
|
die("skip ISO-2022-KR encoding is not available on this platform");
|
2002-11-23 13:26:18 +08:00
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
--INI--
|
2003-09-26 19:08:54 +08:00
|
|
|
|
sendmail_path=/bin/cat
|
2010-04-12 22:05:00 +08:00
|
|
|
|
mail.add_x_header=off
|
2002-11-23 13:26:18 +08:00
|
|
|
|
--FILE--
|
|
|
|
|
<?php
|
|
|
|
|
$to = 'example@example.com';
|
|
|
|
|
|
|
|
|
|
/* default setting */
|
|
|
|
|
mb_send_mail($to, mb_language(), "test");
|
|
|
|
|
|
|
|
|
|
/* Korean */
|
|
|
|
|
if (mb_language("korean")) {
|
|
|
|
|
mb_internal_encoding('EUC-KR');
|
|
|
|
|
mb_send_mail($to, "<22><EFBFBD>Ʈ ".mb_language(), "<22><EFBFBD>Ʈ");
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
--EXPECTF--
|
|
|
|
|
To: example@example.com
|
|
|
|
|
Subject: %s
|
2010-08-25 14:07:22 +08:00
|
|
|
|
MIME-Version: 1.0
|
2002-11-23 13:26:18 +08:00
|
|
|
|
Content-Type: text/plain; charset=%s
|
|
|
|
|
Content-Transfer-Encoding: %s
|
|
|
|
|
|
2003-08-08 18:52:50 +08:00
|
|
|
|
%s
|
2002-11-23 13:26:18 +08:00
|
|
|
|
To: example@example.com
|
|
|
|
|
Subject: =?ISO-2022-KR?B?GyQpQw5FVz06Ri4PIEtvcmVhbg8=?=
|
2010-08-25 14:07:22 +08:00
|
|
|
|
MIME-Version: 1.0
|
2002-11-23 13:26:18 +08:00
|
|
|
|
Content-Type: text/plain; charset=ISO-2022-KR
|
|
|
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
|
|
|
|
|
|
$)CEW=:F.
|