在PHP中将值添加到关联数组中
我想追加一个元素来结束一个关联数组。
例如,我的数组是
$test=Array ([chemical] => asdasd [chemical_hazards] => ggggg )
我的结果应该是
$test=Array ([chemical] => asdasd [chemical_hazards] => ggggg [solution] => good)
你能告诉我如何实现这个?
只要像使用非关联数组一样添加它即可:
$test = array('chemical' => 'asdasd', 'chemical_hazards' => 'ggggg'); //init $test['solution'] = 'good';
你可以用PHP的array_merge函数来做到这一点。
$test = array('chemical' => 'asdasd', 'chemical_hazards' => 'ggggg'); $test2 = array('solution' => 'good'); $result = array_merge($test, $test2); var_dump($result);