php-src/ext/spl/tests/SplFixedArray_offsetExists_less_than_zero.phpt
2020-02-03 22:52:20 +01:00

13 lines
239 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