Annotation of embedaddon/php/ext/mbstring/tests/mb_send_mail06.phpt, revision 1.1.1.3

1.1       misho       1: --TEST--
                      2: mb_send_mail() test 6 (lang=Traditional Chinese)
                      3: --SKIPIF--
                      4: <?php
1.1.1.3 ! misho       5: if (substr(PHP_OS, 0, 3) == 'WIN') {
        !             6:        die('skip.. Not valid for Windows');
1.1.1.2   misho       7: }
1.1       misho       8: if (!function_exists("mb_send_mail") || !mb_language("Traditional Chinese")) {
                      9:        die("skip mb_send_mail() not available");
                     10: }
                     11: if (!@mb_internal_encoding('BIG5')) {
                     12:        die("skip BIG5 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: /* Traditional Chinese () */
                     26: if (mb_language("traditional chinese")) {
                     27:        mb_internal_encoding('BIG5');
                     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: =?BIG5?B?tPrF5yBUcmFkaXRpb25hbCBDaGluZXNl?=
                     41: MIME-Version: 1.0
                     42: Content-Type: text/plain; charset=BIG5
                     43: Content-Transfer-Encoding: 8bit
                     44: 
                     45: ´úÅç

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