Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@allyraza
Created January 12, 2013 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save allyraza/4520140 to your computer and use it in GitHub Desktop.
Save allyraza/4520140 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