20 lines
277 B
Plaintext
20 lines
277 B
Plaintext
|
|
--TEST--
|
||
|
|
SPL: FixedArray: Assigning the object to another variable using []
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
$a = new SplFixedArray(100);
|
||
|
|
|
||
|
|
try {
|
||
|
|
$b = &$a[];
|
||
|
|
} catch (Error $e) {
|
||
|
|
echo $e->getMessage(), "\n";
|
||
|
|
}
|
||
|
|
|
||
|
|
print "ok\n";
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
[] operator not supported for SplFixedArray
|
||
|
|
ok
|