php-src/ext/spl/tests/SplFixedArray_offsetExists_less_than_zero.phpt
2009-05-23 15:38:18 +00:00

14 lines
236 B
PHP

--TEST--
SPL FixedArray offsetExists behaviour on a negative index
--CREDITS--
PHPNW TestFest 2009 - Ben Longden
--FILE--
<?php
$array = new SplFixedArray(5);
if($array->offsetExists(-10) === false) {
echo 'PASS';
}
?>
--EXPECT--
PASS