1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/ext/spl/tests/array_008.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

29 lines
427 B
PHP

--TEST--
SPL: ArrayIterator and foreach reference
--FILE--
<?php
$arr = array(0=>0, 1=>1, 2=>2);
$obj = new ArrayObject($arr);
foreach($obj as $ak=>&$av) {
foreach($obj as $bk=>&$bv) {
if ($ak==0 && $bk==0) {
$bv = "modify";
}
echo "$ak=>$av - $bk=>$bv\n";
}
}
?>
--EXPECT--
0=>modify - 0=>modify
0=>modify - 1=>1
0=>modify - 2=>2
1=>1 - 0=>modify
1=>1 - 1=>1
1=>1 - 2=>2
2=>2 - 0=>modify
2=>2 - 1=>1
2=>2 - 2=>2