Question : Php Arrays combining 2 to name a new one

Hi There,

Wondering if you could help me,

I currently have 2 arrays and was wondering how to combine them to make a third but keeping the key intact?

Example::

(current)array1(
[196] => '2008-11-25 19:28:19'
[140] => '2008-11-30 21:01:36'
[171] => '2008-12-02 00:27:25'
[164] => '2008-12-03 01:59:31'
)

(current)array2(
[140] => 10
[164] => 20
[196] => 20
[171] => 40
)


New Array(
[140] =>
array(      [0] => '2008-11-30 21:01:36'
      [1] => 10
)
[196] =>
array(      [0] => '2008-11-25 19:28:19'
      [1] => 20
)
[171] =>
array(      [0] => '2008-12-02 00:27:25'
      [1] => 40
)
[164] =>
array(      [0] => '2008-12-03 01:59:31'
      [1] => 20
)


Hope that makes sense. - Oh and if you could go easy with the super complicated answers - Im very new to PHP =)

Answer : Php Arrays combining 2 to name a new one

Hello world!!!
1:
2:
3:
4:
5:
6:
foreach ($array1 as $key => $value) {
	if (isset($array2[$key])) {
		$newArray[$key][0] = $array1[$key];
		$newArray[$key][1] = $array2[$key];
	}
}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us