我马上就说,我读了这个问题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/

10-12 22:27