0

我需要在 view.phtml 中获取第一个项目和最后一个项目编号。

问题是由于 html 的结构,我无法在分页控件中访问此属性。例如:

<div class="list">
.... rows ...
<div class="items"> 1 - 18 of 540</div>
</div>
<div id="pagination">
<?php echo $this->paginator; ?>
</div>

无论如何可以从视图中访问这些属性吗?我只是不知道我该怎么做。

4

3 回答 3

2

第一项为 1,最后一项为$paginator->getTotalItemCount();

于 2012-04-20T07:51:12.253 回答
1

Zend 文档中有示例代码,其中生成了第一页和最后一页链接。

于 2012-04-20T07:47:46.460 回答
0
$this->paginator->first;
$this->paginator->last;
于 2012-04-20T12:33:01.143 回答