Last active
July 5, 2016 18:58
-
-
Save novasky-zz/5730900 to your computer and use it in GitHub Desktop.
Paginação com Doctrine 2?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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