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