summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-05-15 17:50:29 +0000
committerfoobar <sniper@php.net>2003-05-15 17:50:29 +0000
commit35fb4f2c20897e5c0aec3d0099a9d124b62ecd82 (patch)
tree4e001b17ef8577931c9b8c95aa9aeca68d80e302 /tests
parent6c3f316db87ae1fb7f1b520f6531967aa5a85df5 (diff)
downloadphp-git-35fb4f2c20897e5c0aec3d0099a9d124b62ecd82.tar.gz
better not confuse people with this test..
Diffstat (limited to 'tests')
-rw-r--r--tests/lang/bug23624.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/lang/bug23624.phpt b/tests/lang/bug23624.phpt
deleted file mode 100644
index 81afefb47e..0000000000
--- a/tests/lang/bug23624.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #23624 (foreach leaves current array key as null)
---FILE--
-<?php
- $arr = array ('one', 'two', 'three');
- var_dump(current($arr));
- foreach($arr as $key => $value);
- var_dump(current($arr));
-?>
---EXPECT--
-string(3) "one"
-string(5) "three"