我有两个关联数组,一个包含有关州(或省)的数据,一个包含不同国家/地区的数据。我从关系数据库中获取值,因此 states 数组不包含国家名称,而是包含国家 ID。
状态数组:
array(3) {
array {
'name' => 'Alabama',
'country' => 1},
array {
'name' => 'Alberta',
'country' => 2},
array {
'name' => 'Minnesota',
'country' => 1}
}
国家数组:
array(2) {
1 => 'United States',
2 => 'Canada'
}
我想要的结果是:
array(3) {
array {
'name' => 'Alabama',
'country' => 'United States'},
array {
'name' => 'Alberta',
'country' => 'Canada'},
array {
'name' => 'Minnesota',
'country' => 'United States'}
}
我搜索和搜索并没有找到回答这个特定问题的问题。我确定我不是唯一拥有此类数据的人。也许我不是在寻找合适的条款。我确实在我的 Country 模型类中编写了一个函数来解决这个问题,但我认为必须有一种更有效的方法。
我目前的解决方案(它有效,但可能有更好的方法,对吧?):
function replaceKeyValues($replaceArray,$replaceKey)
{
$countries = $this->get_countries();
foreach ($replaceArray as &$itm) {
if (isset($itm[$replaceKey])) {
if (in_array($itm[$replaceKey], array_flip($countries))) {
$itm[$replaceKey] = $countries[$itm[$replaceKey]];
}
}
}
return $replaceArray;
}
//called like this (for example)
$states = $this->Country->replaceKeyValues($states,'country');
编辑:我最终使用了 Jon 的建议,并稍微修改了原始函数以使其足够通用,以至于我的模型类中不再需要它。它现在在我的一个助手类中,我添加了另一个输入参数,即“主数据”数组。希望这可以帮助某人:-)
function replaceKeyValues($masterArray,$replaceArray,$replaceKey)
{
foreach ($replaceArray as &$itm) {
if (isset($itm[$replaceKey])) {
if (isset($masterArray[$itm[$replaceKey]])) {
$itm[$replaceKey] = $masterArray[$itm[$replaceKey]];
}
}
}
return $replaceArray;
}