Doctrine2 Paginator获得总结果

时间:2013-04-09 15:26:54

标签: php doctrine-orm pagination

我会立刻说,我读了这个问题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时,我很困惑我应该如何获得与当前页面有限结果相同查询的记录总数。

非常感谢任何帮助/建议。

2 个答案:

答案 0 :(得分:46)

分页符用法如下:

$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>";
}

答案 1 :(得分:-1)

或其他一些循环:

    for ($i=0; $i < $pagesCount; $i++) {
        if ($currentPage == ($i+1)) {
            $pagination1 .= '<li class="active"><a href="'.\URL::current().'?pagina='.($i+1).'" title="">'.($i+1).'</a></li>';
        }else{
            $pagination1 .= '<li><a href="'.\URL::current().'?pagina='.($i+1).'">'.($i+1).'</a></li>';
        }   
    }