Annotation of embedaddon/php/Zend/tests/declare_001.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Testing declare statement with several type values
                      3: --SKIPIF--
                      4: <?php
                      5: if (in_array("detect_unicode", array_keys(ini_get_all()))) {
                      6:   die("skip");
                      7: }
                      8: ?>
                      9: --FILE--
                     10: <?php
                     11: 
                     12: declare(encoding = 1);
                     13: declare(encoding = 1123131232131312321);
                     14: declare(encoding = NULL);
                     15: declare(encoding = M_PI);
                     16: declare(encoding = 'utf-8');
                     17: 
                     18: print 'DONE';
                     19: 
                     20: ?>
                     21: --EXPECT--
                     22: DONE

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