summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_indirect_modification.phpt
blob: ab85b3a09eec18f5bca04931d79c299a432ac894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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
}