24/05/2014, 15:32
|
| | Fecha de Ingreso: mayo-2014
Mensajes: 1
Antigüedad: 10 años, 6 meses Puntos: 0 | |
Respuesta: LeftJoin + setMaxResults /*
* PAGINADOR DE RESULTADOS DE CONSULTAS
*/
public function paginador($array, $firstResult=0, $maxResults=10)
{
$matrix =array();
$ultimo = count($array); // Ultima posición del array
$hasta = $firstResult + $maxResults;
$hasta = ($hasta > $ultimo)? $ultimo : $hasta;
if ($firstResult <= $ultimo)
for ($i = $firstResult; $i < $hasta; $i++) array_push($matrix, $array[$i]);
return $matrix;
} |