Re: [PHP] combining multi-dimensional arrays from multiple parse_ini_file results

2003-03-29 Thread Haseeb Iqbal
some information from php manual array_merge() merges the elements of two or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array. If the input arrays have the same string keys, then the later value for that key will overwrite

[PHP] combining multi-dimensional arrays from multiple parse_ini_file results

2003-03-29 Thread Merritt, Dave
All, How do I combine the multi-dimensional arrays returned from the parse_ini_file function on two different ini files? I tried: $my_array = parse_ini_file('some_file', true); $my_array[] = parse_ini_file['another_file', true); Thanks Dave [EMAIL PROTECTED] -- PHP General Mailing List (htt