gpt4 book ai didi

php - Doctrine2 Paginator 获得总结果

转载 作者:IT王子 更新时间:2023-10-28 23:56:25 26 4
gpt4 key购买 nike

马上我会说,我读了这个问题Doctrine2 Paginator , 但它没有给我关于问题标题的足够信息。

当我使用 Doctrine1 时,我得到的结果是这样的代码,例如:

$list = $this->query
->addSelect( 'SQL_CALC_FOUND_ROWS *' )
->offset( ( $this->currentPage - 1 ) * $this->perPage )
->limit( $this->perPage )
->execute( array(), \Doctrine_Core::HYDRATE_ARRAY_SHALLOW );

$totalRecords = SqlCalcFoundRowsEventListener::getFoundRowsCount();
$this->totalPages = ceil( $totalRecords / $this->perPage );

这很棒。

现在,在使用 Doctrine2 时,我对如何获取与当前页面的有限结果具有相同查询的记录总数感到困惑。

如有任何帮助/建议,我们将不胜感激。

最佳答案

分页器用法如下:

$paginator  = new \Doctrine\ORM\Tools\Pagination\Paginator($query);

$totalItems = count($paginator);
$pagesCount = ceil($totalItems / $pageSize);

// now get one page's items:
$paginator
->getQuery()
->setFirstResult($pageSize * ($currentPage-1)) // set the offset
->setMaxResults($pageSize); // set the limit

foreach ($paginator as $pageItem) {
echo "<li>" . $pageItem->getName() . "</li>";
}

关于php - Doctrine2 Paginator 获得总结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15906051/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com