mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
16 lines
337 B
Plaintext
16 lines
337 B
Plaintext
|
--TEST--
|
||
|
SPL FixedArray offsetExists throws error only one parameter
|
||
|
--CREDITS--
|
||
|
PHPNW TestFest 2009 - Ben Longden
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$array = new SplFixedArray(5);
|
||
|
$a = $array->offsetExists();
|
||
|
if(is_null($a)) {
|
||
|
echo 'PASS';
|
||
|
}
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Warning: SplFixedArray::offsetExists() expects exactly 1 parameter, 0 given in %s on line %d
|
||
|
PASS
|