php-src/ext/spl/tests/fastarray_013.phpt
2008-06-07 14:10:21 +00:00

22 lines
287 B
PHP

--TEST--
SPL: FastArray: Passing the object using [] as parameter
--FILE--
<?php
$a = new SplFastArray(100);
function test(SplFastArray &$arr) {
print "ok\n";
}
try {
test($a[]);
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Index invalid or out of range