每个按类别joomla k2排序的php

时间:2012-06-21 23:15:46

标签: php joomla foreach joomla-extensions joomla-k2

您好我有来自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,

我需要它从main和子类别中获取项目并显示如下:

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]

底部是其中的类别名称。

1 个答案:

答案 0 :(得分:0)

只有一种方法。你必须重新排序你的数组

foreach($thearray as $key=>$item) {
    $items[$item->catid][] = $item;
}

foreach($items AS $catid => $cat_items) {
    echo '<h3>'.$catid.'</h3>';
    foreach($cat_items AS $item)
        echo $item->name.'<br>';
}

像这样。

相关问题