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