Skip to content

Instantly share code, notes, and snippets.

@novasky-zz
Last active July 5, 2016 18:58
Show Gist options
  • Save novasky-zz/5730900 to your computer and use it in GitHub Desktop.
Save novasky-zz/5730900 to your computer and use it in GitHub Desktop.
Paginação com Doctrine 2?
<?php
$page = 1; // Página Atual
$numByPage = 5; // Número de registros por Página
$Empresa = $em->createQuery("SELECT e FROM Empresa e ")
->setFirstResult( ( $numByPage * ($page-1) ) )
->setMaxResults( $numByPage );
$Empresa = new \Doctrine\ORM\Tools\Pagination\Paginator($Empresa);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment