|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-28 13:17 UTC] tony2001@php.net
[2005-11-28 13:19 UTC] gentoo at slave dot umbr dot cas dot cz
[2005-11-28 13:20 UTC] gentoo at slave dot umbr dot cas dot cz
[2005-11-28 13:22 UTC] tony2001@php.net
[2005-11-28 13:22 UTC] gentoo at slave dot umbr dot cas dot cz
[2005-11-28 13:23 UTC] gentoo at slave dot umbr dot cas dot cz
[2005-11-28 13:28 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 19:00:01 2025 UTC |
Description: ------------ If you have user defined function and this function uses global array (using global $ARRAY;), you cannot use functions next()/prev(), because they do not change internal array pointer. Reproduce code: --------------- $msort=array(); function do_print_test() { global $msort; reset($msort);echo sprintf("0:%s=%s\n",key($msort),current($msort)); next($msort);echo sprintf("1:%s=%s\n",key($msort),current($msort)); next($msort);echo sprintf("2:%s=%s\n",key($msort),current($msort)); next($msort);echo sprintf("3:%s=%s\n",key($msort),current($msort)); next($msort);echo sprintf("4:%s=%s\n",key($msort),current($msort)); } array_push($msort,"a"); array_push($msort,"b"); array_push($msort,"c"); array_push($msort,"d"); array_push($msort,"e"); array_push($msort,"f"); do_print_test(); Expected result: ---------------- in PHP 4.3.9 and 4.4.0 0:0=a 1:1=b 2:2=c 3:3=d 4:4=e Actual result: -------------- in PHP 4.4.1 0:0=a 1:0=a 2:0=a 3:0=a 4:0=a