blob: 683afd9c8db0fd7243b79a52b991b8b3af10ce26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Test explode() function : usage variations - when $string length is greater than
EXPLODE_ALLOC_STEP (64) and the $limit is negative
--CREDITS--
edgarsandi - <edgar.r.sandi@gmail.com>
--FILE--
<?php
var_dump(count(explode('|', implode('|', range(1,65)), -1)));
?>
--EXPECT--
int(64)
|