mirror of
https://github.com/php/php-src.git
synced 2024-12-05 07:46:06 +08:00
5b755c40ea
- bugfix #27063 - bugfix #27929 - bugfix #28099 - bugfix #28125 # The amount of code is needed to solve the return by reference problem. # dual_it and derived also need their own iterator handlers to be able # to return by reference.
33 lines
506 B
PHP
Executable File
33 lines
506 B
PHP
Executable File
--TEST--
|
|
SPL: ArrayIterator without ArrayObject
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip"; ?>
|
|
--INI--
|
|
allow_call_time_pass_reference=1
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "==Normal==\n";
|
|
|
|
$arr = array(0=>0, 1=>1, 2=>2);
|
|
$obj = new ArrayIterator($arr);
|
|
|
|
foreach($obj as $ak=>$av) {
|
|
foreach($obj as $bk=>$bv) {
|
|
if ($ak==0 && $bk==0) {
|
|
$arr[0] = "modify";
|
|
}
|
|
echo "$ak=>$av - $bk=>$bv\n";
|
|
}
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
==Normal==
|
|
0=>0 - 0=>0
|
|
0=>0 - 1=>1
|
|
0=>0 - 2=>2
|
|
===DONE===
|