php-src/ext/standard/tests/array/bug32021.phpt
2005-02-18 13:37:23 +00:00

15 lines
163 B
PHP

--TEST--
Bug #32021 (Crash caused by range('', 'z'))
--FILE--
<?php
$foo = range('', 'z');
var_dump($foo);
?>
ALIVE
--EXPECT--
array(1) {
[0]=>
int(0)
}
ALIVE