我有这样的模型类
/**
* @property integer $is_active
*/
class User extends CActiveRecord {
....
}
$User = User::model()->findByPk(1);
在mysql中is_active
总是返回1
或0
,我希望每当我致电$User->is_active
时。
它会输出boolean
而不是integer
怎么做这个行为?
答案 0 :(得分:0)
将您的字段更改为TinyInt,yii将相应地处理