我有两个数组。第一个直接来自我的原始数据。每个项目都是时间线的一个点。
print_r($items)
返回
Array
(
[0] => Array
(
[id] => 1173
[month] => January
[year] => 2013
[description] => This is a test
[link] => #
[image] => http://s3.amazonaws.com/stockpr-test-store/esph2/db/Timeline/1173/image_resized.jpg
)
[1] => Array
(
[id] => 1183
[month] => February
[year] => 2013
[description] => This is another test
[link] =>
)
[2] => Array
(
[id] => 1193
[month] => December
[year] => 2012
[description] => Testing another year
[link] => #
)
)
我有第二个数组,可以从该数组中获取所有独特的年份。
print_r($years)
返回
Array
(
[0] => 2013
[2] => 2012
)
那么我怎样才能度过这些年,然后每年归还与那一年相匹配的项目?
所以,对于 2012 年,我会从 $items 数组中得到 [2]。对于 2013 年,我会从 $items 数组中得到 [0] 和 [1]。
我在这一切都错了吗?我想要做的就是有这样的输出:
<h1>Timeline</h1>
<h2>2013</h2>
<ul>
<li>ID No. 1173</li>
<li>ID No. 1183</li>
</ul>
<h2>2012</h2>
<ul>
<li>ID No. 1193</li>
</ul>
编辑:
目前使用:
<? foreach($years as $year) : ?>
<div class="year row clearfix" id="y-$year">
<h3><span><?= $year ?></span></h3>
<? foreach($items as $item) : ?>
<? if($item['year'] == $year) : ?>
<div class="item span5">
<div class="padding">
<div class="text">
<h4><?= $item['month']?> <?= $item['year'] ?></h4>
<p><?= $item['description'] ?></p>
</div>
</div>
</div>
<? endif; ?>
<? endforeach; ?>
</div>
<? endforeach; ?>
但这似乎有点低效。据我所知,每次尝试输出一个项目时,它都会遍历整个数组。