php – Zend Paginator – 如何获得paginator中的第一个元素?

前端之家收集整理的这篇文章主要介绍了php – Zend Paginator – 如何获得paginator中的第一个元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个zend paginator对象,我想得到这个paginator中的第一个元素.

我尝试了$paginator-> getItem(0),但它返回消息:消息:无法寻找0低于偏移量2.而$paginator-> count()为19.

我可以通过使用foreach实现这一点:

foreach ($paginator as $item)
{
    $entry = $item;
}

如何通过不使用foreach来获得这个?

这将为您提供第一个不使用foreach的项目:
$first = current($paginator->getItemsByPage(1)); // Get the first item
$firstCurrent = current($paginator->getCurrentItems()); // Get the first item of the current pages
原文链接:https://www.f2er.com/php/134098.html

猜你在找的PHP相关文章