我有一个zend paginator对象,我想得到这个paginator中的第一个元素.
我尝试了$paginator-> getItem(0),但它返回消息:消息:无法寻找0低于偏移量2.而$paginator-> count()为19.
我可以通过使用foreach实现这一点:
foreach ($paginator as $item) { $entry = $item; }
如何通过不使用foreach来获得这个?
这将为您提供第一个不使用foreach的项目:
原文链接:https://www.f2er.com/php/134098.html$first = current($paginator->getItemsByPage(1)); // Get the first item $firstCurrent = current($paginator->getCurrentItems()); // Get the first item of the current pages