Annotation of embedaddon/php/ext/mbstring/tests/mb_send_mail07.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
                      2: mb_send_mail() test 7 (lang=Korean)
                      3: --SKIPIF--
                      4: <?php
1.1.1.2 ! misho       5: if(substr(PHP_OS, 0, 3) == "WIN") {
        !             6:   die("skip Won't run on Windows");
        !             7: }
1.1       misho       8: if (!function_exists("mb_send_mail") || !mb_language("Korean")) {
                      9:        die("skip mb_send_mail() not available");
                     10: }
                     11: if (!@mb_internal_encoding('ISO-2022-KR')) {
                     12:        die("skip ISO-2022-KR encoding is not available on this platform");
                     13: }
                     14: ?>
                     15: --INI--
                     16: sendmail_path=/bin/cat
                     17: mail.add_x_header=off
                     18: --FILE--
                     19: <?php
                     20: $to = 'example@example.com';
                     21: 
                     22: /* default setting */
                     23: mb_send_mail($to, mb_language(), "test");
                     24: 
                     25: /* Korean */
                     26: if (mb_language("korean")) {
                     27:        mb_internal_encoding('EUC-KR');
                     28:        mb_send_mail($to, "Å×½ºÆ® ".mb_language(), "Å×½ºÆ®");
                     29: }
                     30: ?>
                     31: --EXPECTF--
                     32: To: example@example.com
                     33: Subject: %s
                     34: MIME-Version: 1.0
                     35: Content-Type: text/plain; charset=%s
                     36: Content-Transfer-Encoding: %s
                     37: 
                     38: %s
                     39: To: example@example.com
                     40: Subject: =?ISO-2022-KR?B?GyQpQw5FVz06Ri4PIEtvcmVhbg8=?=
                     41: MIME-Version: 1.0
                     42: Content-Type: text/plain; charset=ISO-2022-KR
                     43: Content-Transfer-Encoding: 7bit
                     44: 
                     45: $)CEW=:F.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>