From: cdk at nsk dot ru Operating system: BSD PHP version: 4.3.10 PHP Bug Type: Arrays related Bug description: foreach doesn't work properly
Description: ------------ foreach ($array as $key => $value) if $key is not specified in foreach syntax, then in php 4.3.9 foreach iterated through array values, but in 4.3.10 $value becomes an array in each iteration. Reproduce code: --------------- $array = array(1,2,3); $res = array(); foreach ($array as $value) $res[] = $value; Expected result: ---------------- expecting $res like array(1,2,3) Actual result: -------------- but $res is array(array(1,0), array(2,1), array(3,2)) -- Edit bug report at http://bugs.php.net/?id=31150&edit=1 -- Try a CVS snapshot (php4): http://bugs.php.net/fix.php?id=31150&r=trysnapshot4 Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=31150&r=trysnapshot50 Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=31150&r=trysnapshot51 Fixed in CVS: http://bugs.php.net/fix.php?id=31150&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=31150&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=31150&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=31150&r=needscript Try newer version: http://bugs.php.net/fix.php?id=31150&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=31150&r=support Expected behavior: http://bugs.php.net/fix.php?id=31150&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=31150&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=31150&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=31150&r=globals PHP 3 support discontinued: http://bugs.php.net/fix.php?id=31150&r=php3 Daylight Savings: http://bugs.php.net/fix.php?id=31150&r=dst IIS Stability: http://bugs.php.net/fix.php?id=31150&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=31150&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=31150&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=31150&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=31150&r=mysqlcfg
