Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created July 17, 2011 15:27
Show Gist options
  • Select an option

  • Save TiuTalk/1087684 to your computer and use it in GitHub Desktop.

Select an option

Save TiuTalk/1087684 to your computer and use it in GitHub Desktop.
<?php
$params = array(
'conditions' => array('Model.campo' => 'valor'), // Condições
'recursive' => 1, // Nível de recursividade
'fields' => array('Model.campo1', 'Model.campo2'), // Campos retornados
'order' => array('Model.created', 'Model.campo3 DESC'), // Ordem
'group' => array('Model.field'), // GROUP BY
'limit' => n, // Limite de resultados
'page' => n, // Página
'offset'=> n // Inicio da paginação
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment