Created
July 17, 2011 15:27
-
-
Save TiuTalk/1087684 to your computer and use it in GitHub Desktop.
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 | |
| $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