summaryrefslogtreecommitdiff
path: root/ext/spl/tests/array_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/array_004.phpt')
-rw-r--r--ext/spl/tests/array_004.phpt30
1 files changed, 30 insertions, 0 deletions
diff --git a/ext/spl/tests/array_004.phpt b/ext/spl/tests/array_004.phpt
new file mode 100644
index 0000000..0b80e5c
--- /dev/null
+++ b/ext/spl/tests/array_004.phpt
@@ -0,0 +1,30 @@
+--TEST--
+SPL: ArrayIterator
+--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) {
+ $arr[0] = "modify";
+ }
+ echo "$ak=>$av - $bk=>$bv\n";
+ }
+}
+
+echo "Done\n";
+?>
+--EXPECTF--
+0=>0 - 0=>0
+0=>0 - 1=>1
+0=>0 - 2=>2
+1=>1 - 0=>0
+1=>1 - 1=>1
+1=>1 - 2=>2
+2=>2 - 0=>0
+2=>2 - 1=>1
+2=>2 - 2=>2
+Done