[Yii Framework] Parameterized Named Scopes(命名规范参数化)
用一个方法来代替使用CActiveRecord::scopes
例如
public function recently($limit=5)
{
$this->getDbCriteria()->mergeWith(array(
’order’=>’createTime DESC’,
’limit’=>$limit,
));
return $this;
}
用一个方法来代替使用CActiveRecord::scopes
例如
public function recently($limit=5)
{
$this->getDbCriteria()->mergeWith(array(
’order’=>’createTime DESC’,
’limit’=>$limit,
));
return $this;
}