为了检查我的数组中相等值的频率,我计算它们:
$count = array_count_values($array_names);
要获取每个键/值对,我使用这个 foreach 循环:
foreach ($count as $key => $value) {
echo $value . '–' . $key . '<br />';
}
可能的输出:
2 – Harry Peters
1 – Winston Meyers
3 – Jason Williams
现在我有了第二个带有 URL 的数组:
$urls = array(http://harry-peters.com, http://winston-meyers.com, http://jason-williams.com);
该数组应该包裹在$key
变量周围,例如
echo $value . '- <a href="' . $url . '">' . $key . '</a><br />';
所以我会得到类似的东西:
2 – <a href="http://harry-peters.com">Harry Peters</a>
1 – <a href="http://winston-meyers.com">Winston Meyers</a>
3 – <a href="http://jason-williams.com">Jason Williams</a>
但我不知道如何为第一个循环的 URL 实现另一个 foreach 循环。