在PHP中将值添加到关联数组

时间:2009-12-25 07:45:51

标签: php

我想将一个元素追加到一个关联数组的末尾。

例如,我的数组是

$test=Array ([chemical] => asdasd [chemical_hazards] => ggggg ) 

我的结果应该是

$test=Array ([chemical] => asdasd [chemical_hazards] => ggggg [solution] => good) 

你能告诉我如何实现这个吗?

2 个答案:

答案 0 :(得分:100)

只需像使用非关联数组一样添加它:

$test = array('chemical' => 'asdasd', 'chemical_hazards' => 'ggggg'); //init
$test['solution'] = 'good';

答案 1 :(得分:0)

您可以使用PHP的array_merge功能执行此操作。

$test = array('chemical' => 'asdasd', 'chemical_hazards' => 'ggggg'); 
$test2 = array('solution' => 'good');
$result = array_merge($test, $test2);
var_dump($result);