You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
257 B

23 years ago
  1. --TEST--
  2. Bug #23624 (foreach leaves current array key as null)
  3. --FILE--
  4. <?php
  5. $arr = array ('one', 'two', 'three');
  6. var_dump(current($arr));
  7. foreach($arr as $key => $value);
  8. var_dump(current($arr));
  9. ?>
  10. --EXPECT--
  11. string(3) "one"
  12. bool(false)