|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-01-07 16:01 UTC] blaine_mcdonnell at yahoo dot com
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
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 03:00:01 2025 UTC |
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; }