ID: 14917 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Arrays related Operating System: BSD & Windows PHP Version: 4.1.1 New Comment:
This is the work around I used: function my_array_merge() { $DATA_ARRAY=func_get_args(); foreach ($DATA_ARRAY as $key=>$val) { foreach (testArray($DATA_ARRAY[$key]) as $key1=>$val1) {$TEMP_ARRAY[$key1]=$DATA_ARRAY[$key][$key1];} } return $TEMP_ARRAY; } Previous Comments: ------------------------------------------------------------------------ [2002-01-08 07:19:40] [EMAIL PROTECTED] Reclassified. ------------------------------------------------------------------------ [2002-01-07 16:01:29] [EMAIL PROTECTED] When I try to use array_merge an array with an associative array the array is renumbered starting at 0. Problem on Win2k with 4.1.0 & 4.1.1 Problem on OpenBSD with 4.0.6 Here is a quick sample: <? $TEST=array_merge(array("7"=>array(1=>"TEST",2=>"TEST",4=>"TEST"),"9"=>array(1=>"TEST",2=>"TEST",4=>"TEST")),array("A"=>array(1=>"TEST",2=>"TEST",4=>"TEST"),"B"=>array(1=>"TEST",2=>"TEST",4=>"TEST"))); foreach ($TEST as $key=>$val) {print "$key<BR>";} ?> Output: 0 1 A B ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=14917&edit=1