Annotation of embedaddon/php/ext/standard/tests/strings/explode_bug.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Explode/memnstr bug
                      3: --INI--
                      4: error_reporting=2047
                      5: memory_limit=256M
                      6: --FILE--
                      7: <?php
                      8: $res = explode(str_repeat("A",145999999),1);
                      9: var_dump($res);
                     10: ?>
                     11: --EXPECTF--
                     12: array(1) {
                     13:   [0]=>
                     14:   string(1) "1"
                     15: }

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