|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-27 11:41 UTC] colder@php.net
[2011-11-27 11:32 UTC] snapwilliam at gmail dot com
[2011-11-27 11:55 UTC] snapwilliam at gmail dot com
[2015-01-01 20:23 UTC] chealer at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 00:00:02 2025 UTC |
Description: ------------ is it a bug or a feature ? Reproduce code: --------------- <?php $a = array('a','b','c','d','e'); foreach($a as &$b){} foreach($a as $b){ echo $b; // last element lost in space, next to last element appears 2 times } ?> Expected result: ---------------- abcde Actual result: -------------- abcdd