1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/tests/lang/bug23624.phpt
foobar 412f54edab MFB
2003-05-14 15:02:30 +00:00

13 lines
263 B
PHP

--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"