mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
15 lines
283 B
PHP
15 lines
283 B
PHP
--TEST--
|
|
SplFixedArray indirect modification notice
|
|
--FILE--
|
|
<?php
|
|
$a = new SplFixedArray(1);
|
|
$a[0][] = 3;
|
|
var_dump($a);
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Indirect modification of overloaded element of SplFixedArray has no effect in %s on line %d
|
|
object(SplFixedArray)#1 (1) {
|
|
[0]=>
|
|
NULL
|
|
}
|