标签: php loops reference
有人可以详细解释这里有什么问题,因为在第二次循环传递中,我得到结果“一”“两”“三”“三”?
$a = array("one", "two", "three", "four"); foreach ($a as &$e) { echo $e . PHP_EOL; } foreach ($a as $e) { echo $e . PHP_EOL; }