mirror of
https://github.com/php/php-src.git
synced 2025-01-05 18:33:56 +08:00
20 lines
267 B
PHP
20 lines
267 B
PHP
--TEST--
|
|
SPL: FixedArray: Assigning the object to another variable using []
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = new SplFixedArray(100);
|
|
|
|
try {
|
|
$b = &$a[];
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
print "ok\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
Index invalid or out of range
|
|
ok
|