summaryrefslogtreecommitdiff
path: root/tests/lang/foreach_with_references_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/foreach_with_references_001.phpt')
-rw-r--r--tests/lang/foreach_with_references_001.phpt32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/lang/foreach_with_references_001.phpt b/tests/lang/foreach_with_references_001.phpt
deleted file mode 100644
index eb52bb8c10..0000000000
--- a/tests/lang/foreach_with_references_001.phpt
+++ /dev/null
@@ -1,32 +0,0 @@
---TEST--
-foreach() with references
---FILE--
-<?php
-
-$arr = array(1 => "one", 2 => "two", 3 => "three");
-
-foreach($arr as $key => $val) {
- $val = $key;
-}
-
-print_r($arr);
-
-foreach($arr as $key => &$val) {
- $val = $key;
-}
-
-print_r($arr);
-
---EXPECT--
-Array
-(
- [1] => one
- [2] => two
- [3] => three
-)
-Array
-(
- [1] => 1
- [2] => 2
- [3] => 3
-)