Skip to content

Instantly share code, notes, and snippets.

@jamesfinley
Created July 2, 2011 14:17
Show Gist options
  • Select an option

  • Save jamesfinley/1060445 to your computer and use it in GitHub Desktop.

Select an option

Save jamesfinley/1060445 to your computer and use it in GitHub Desktop.
Find Method Revisions
function find() {
}
$articles->find(array(
'conditions' => array(),
'page' => 1
));
$articles->find(array(
'conditions' => array('blog_id' => 1),
'offset' => 1,
'limit' => 1
));
$articles->find(array('blog_id' => 1), $offset, $limit);
@tomkrush
Copy link
Copy Markdown

tomkrush commented Jul 2, 2011

:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment