mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
13 lines
188 B
PHP
13 lines
188 B
PHP
--TEST--
|
|
Bug #23104 (Hash position not reset for constant arrays)
|
|
--FILE--
|
|
<?php
|
|
function foo($bar = array("a", "b", "c"))
|
|
{
|
|
var_dump(current($bar));
|
|
}
|
|
foo();
|
|
?>
|
|
--EXPECT--
|
|
string(1) "a"
|