0

我有这样的模型课

/**
 * @property integer $is_active
 */
class User extends CActiveRecord {
....
}

$User = User::model()->findByPk(1);

在 mysqlis_active中总是返回10,我想每当我打电话$User->is_active。它不会
输出。 怎么做这种行为?booleaninteger

4

1 回答 1

0

将您的字段更改为 TinyInt,yii 将相应地处理它

于 2012-11-25T14:30:26.920 回答