0

我在处理几个数组时遇到了一些问题并且被卡住了。我能够阅读两者,但无法弄清楚如何让第一个基于一个键搜索第二个并将另一个键的值拉入第一个。两个数组都有codedescription。我需要将下一个数组中的描述放入代码相同的第一个数组中。第一个数组中有多个代码实例。

Array1 (
[0] => Array (
    [state] => AK
    [effdate] => 01/01/2012
    [code] => 1
    [description] => null
    [enddate] => null
)
[1] => Array (
    [state] => AK
    [effdate] => 01/01/2012
    [code] => 2
    [description] => null
    [enddate] => null
)
[2] => Array (
    [state] => AK
    [effdate] => 01/01/2012
    [code] => 3
    [description] => null
    [enddate] => null
)
)

Array2 (
[0] => Array (
    [code] => 1
    [description] => some description
)
[1] => Array (
    [code] => 2
    [description] => some other description
)
[2] => Array (
    [code] => 3
    [description] => yet another description
)
)

此外,第一个数组是从 MySQL 表创建的,而第二个数组来自制表符分隔的文本文件。最终结果会将文本文件中的描述写入 MySQL 表。下面是我必须在两个数组之间查看并将它们写入 HTML 表的代码。我能够检索第一个条目的描述,但没有别的。我知道它与if 语句中的 *$ncci_array[$ i ]* 中的 $i 有关,但我不确定用什么替换它。Array1 = *$rates_array* 和 Array2 = *$ncci_array*

echo '<table border="1"><tr><td>ID</td><td>State</td><td>Effective</td><td>Code</td><td>Description</td><td>End</td></tr>'."\n";

if (($rates_array[$i]['state'] == 'AL'||'AK'||'AZ'||'AR'||'CO'||'CT'||'DC'||'FL'||'GA'||'HI'||'ID'||'IL'||'IA'||'KS'||'KY'||'LA'||'ME'||'MD'||'MS'||'MO'||'MT'||'NE'||'NV'||'NH'||'NM'||'OK'||'RI'||'SC'||'SD'||'TN'||'UT'||'VT'||'VA'||'WI') && ($rates_array[$i]['code'] == $ncci_array[$i]['code']))
{
    $rates_array[$i]['description'] = strtolower($ncci_array[$i]['description']);
}else{
    $rates_array[$i]['description'] = 'Description unavailable at this time';
}

for ($rates_row = 0; $rates_row < count($rates_array)-1; $rates_row++)
{
    if ($rates_array[$i]['code'] == $rates_array[$i+1]['code'])
    {
        $rates_array[$i]['enddate'] = date('Y-m-d', strtotime('-1 day', strtotime($rates_array[$i+1]['effdate'])));
    }else{
        $rates_array[$i]['enddate'] = date('Y-m-d', strtotime('+1 year', strtotime($rates_array[$i]['effdate'])));
    }

    echo '<tr><td>'.$i.'</td><td>'.$rates_array[$i]['state'].'</td><td>'.$rates_array[$i]['effdate'].'</td><td>'.$rates_array[$i]['code'].'</td><td>'.$rates_array[$i]['description'].'</td><td>'.$rates_array[$i]['enddate'].'</td></tr>'."\n";

    $i++;
}
echo '</table>';

当前输出看起来像这样

| ID | State | Effective  | Code | Description      | End        |
| 0  | AK    | 01/01/2011 | 1    | Some description | 12/31/2011 |
| 1  | AK    | 01/01/2012 | 1    |                  | 01/01/2013 |
| 2  | AK    | 01/01/2012 | 2    |                  | 01/01/2013 |
| 3  | AK    | 01/01/2012 | 3    |                  | 01/01/2013 |

谢谢参观!

4

1 回答 1

1

遍历两个数组,检查两者之间的匹配。(在问题编辑之前发布)

foreach($rates_array as $key => $val){ // Array1 where description is null
    foreach($ncci_array as $k => $v){ // Array2 where description is set
        if($val['code'] == $v['code']) 
            $rates_array[$key]['description'] = $v['description'];
    }
}

这将强制将 Array2 中的描述值放入 Array1 中,从而为您提供一个可以在表中使用的数组以避免混淆。

此外,您实际上并不需要 $i ,因为您使用 $rates_row 作为循环计数器。

于 2013-01-18T22:08:30.673 回答