1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/spl/tests/SplFixedArray_indirect_modification.phpt
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

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
}