Skip to content

Instantly share code, notes, and snippets.

@Narven
Last active January 3, 2016 12:39
Show Gist options
  • Select an option

  • Save Narven/8464713 to your computer and use it in GitHub Desktop.

Select an option

Save Narven/8464713 to your computer and use it in GitHub Desktop.
yii CDbCriteria examples
<?php
$criteria=new CDbCriteria;
$criteria->addSearchCondition('title', $_GET['Press']['title']);
$criteria->addSearchCondition('body', $_GET['Press']['title']);
$presses=Press::model()->findAll($criteria);
// SELECT * FROM 'presses' 't' WHERE (title LIKE :ycp0) AND (body LIKE :ycp1)
$criteria=new CDbCriteria;
$criteria->addSearchCondition('title', $_GET['Press']['title'], true, 'OR');
$criteria->addSearchCondition('body', $_GET['Press']['title'], true, 'OR');
$presses=Press::model()->findAll($criteria);
// SELECT * FROM 'presses' 't' WHERE (title LIKE :ycp0) OR (body LIKE :ycp1)
$criteria=new CDbCriteria;
$criteria->compare('title', $_GET['Press']['title'], true, 'OR');
$criteria->compare('body', $_GET['Press']['title'], true, 'OR');
$presses=Press::model()->findAll($criteria);
// SELECT * FROM 'presses' 't' WHERE (title LIKE :ycp0) OR (body LIKE :ycp1)
// with dates
$now = new CDbExpression("NOW()");
$criteria->addCondition('exp_d > '.$now);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment