Annotation of embedaddon/php/Zend/tests/multibyte/multibyte_encoding_003.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
                      2: Zend Multibyte and UTF-16 BOM
                      3: --SKIPIF--
                      4: <?php
1.1.1.2 ! misho       5: if (!in_array("zend.detect_unicode", array_keys(ini_get_all()))) {
1.1       misho       6:   die("skip Requires configure --enable-zend-multibyte option");
                      7: }
                      8: if (!extension_loaded("mbstring")) {
                      9:   die("skip Requires mbstring extension");
                     10: }
                     11: ?>
                     12: --INI--
1.1.1.2 ! misho      13: zend.multibyte=1
1.1       misho      14: mbstring.internal_encoding=iso-8859-1
                     15: --FILE--
                     16: ÿþ<?php
                     17: print "Hello World\n";
                     18: ?>
                     19: ===DONE===
                     20: 
                     21: --EXPECT--
1.1.1.2 ! misho      22: Hello World
        !            23: ===DONE===

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