1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/spl/tests/array_008.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

32 lines
467 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";
}
}
?>
===DONE===
<?php exit(0); ?>
--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
===DONE===