嗨,我有来自 joomla k2 模板的代码
<div id="itemListPrimary" class="clearfix">
<?php $thearray = $this->primary ;?>
<?php foreach($thearray as $key=>$item): ?>
<div class="itemContainer">
<?php
$this->item=$item;
echo $this->loadTemplate('item');
?>
</div>
<?php endforeach; ?>
</div>
现在它正在从主类别和子类别中获取项目并显示这样的项目。
item,
item,
item,
item,
我需要它从主类别和子类别中获取项目并像这样显示它们:
category1
item
item
category2
item
item
category3
item
item
等等。
我怎样才能做到这一点?
uptade:数组是这样构造的,或者至少有几行
Array ( [0] => stdClass Object ( [id] => 41 [title] => test2 [alias] => test2 [catid] => 8 [published] => 1 [introtext] =>
test2
[fulltext] => [video] => [gallery] => [extra_fields] => [] [extra_fields_search] => [created] => 2012-08-27 16:37:51 [created_by] => 62 [created_by_alias] => [checked_out] => 0 [checked_out_time] => 0000-00-00 00:00:00 [modified] => 0000-00-00 00:00:00 [modified_by] => 0 [publish_up] => 2012-08-27 16:37:51 [publish_down] => 0000-00-00 00:00:00 [trash] => 0 [access]
底部的某处是其中的类别名称。