Skip to content

Instantly share code, notes, and snippets.

@Narven
Forked from allyraza/gist:4520140
Created April 18, 2013 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Narven/5417120 to your computer and use it in GitHub Desktop.
Save Narven/5417120 to your computer and use it in GitHub Desktop.
<?php
// first approach
...
$criteria = new CDbCriteria;
$criteria->compare("price", 1);
$posts = Post::model()->find($criteria);
...
// second approach
...
$posts = Post::model()->find(array('price'=>1));
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment