Yii 中我的模型规则函数中的以下代码
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('mail, firstname, lastname, number, question, time', 'required','message'=>'{attribute} نمی تواند خالی باشد'),
array('status', 'numerical', 'integerOnly'=>true,'message'=>'{attribute} فقط مقادیر عددی مجاز است'),
array('mail, firstname, lastname, number', 'length', 'max'=>45,'message'=>'حداکثر طول {attribute} ۴۵ کارکتر می باشد'),
array('question','length','min'=>10,'message'=>'حداقل طول سوال ۱۰ کارکتر می باشد'),
array('mail','email','message'=>'ایمیل وارد شده حقیقی نمی باشد'),
array('time','unsafe'),
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('id, mail, firstname, lastname, number, question, time, status', 'safe', 'on'=>'search'),
);
}
所有消息都正常工作,除了我为最小长度定义的消息
array('question','length','min'=>10,'message'=>'حداقل طول سوال ۱۰ کارکتر می باشد'),
它总是返回 Yii 的默认值,这意味着 پرسش 太短(最少 10 个字符)。