Annotation of embedaddon/php/Zend/tests/multibyte/multibyte_encoding_002.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Zend Multibyte and UTF-8 BOM
        !             3: --SKIPIF--
        !             4: <?php
        !             5: if (!in_array("detect_unicode", array_keys(ini_get_all()))) {
        !             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--
        !            13: mbstring.internal_encoding=iso-8859-1
        !            14: --FILE--
        !            15: <?php
        !            16: print "Hello World\n";
        !            17: ?>
        !            18: ===DONE===
        !            19: --EXPECT--
        !            20: Hello World
        !            21: ===DONE===

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