-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/lang/
File Upload :
Current File : //usr/src/php/tests/lang/bug23624.phpt

--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"
bool(false)

Copyright © 2017 || Recoded By Mr.Bumblebee