php-src/ext/spl/tests/fixedarray_012.phpt

20 lines
261 B
Plaintext
Raw Normal View History

2008-06-07 14:10:21 +00:00
--TEST--
SPL: FixedArray: Assigning the object to another variable using []
2008-06-07 14:10:21 +00:00
--FILE--
<?php
$a = new SplFixedArray(100);
2008-06-07 14:10:21 +00:00
try {
$b = &$a[];
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
print "ok\n";
?>
--EXPECT--
Index invalid or out of range
ok