web-dev-qa-db-ja.com

合計結果を取得するDoctrine2 Paginator

すぐに、この質問 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を使用しているとき、現在のページの制限された結果として同じクエリでレコードの合計量をどのように取得すべきか混乱しています。

どんな助け/アドバイスでも大歓迎です。

20
Eugene

ページネーターの使用法は次のとおりです。

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