我对 yii 框架中的规则方法有点困惑。这是来自示例博客应用程序的规则函数。
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('title, content, status, author_id', 'required'),
array('status, create_time, update_time, author_id', 'numerical', 'integerOnly'=>true),
array('title', 'length', 'max'=>128),
array('tags', 'safe'),
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('id, title, content, tags, status, create_time, update_time, author_id', 'safe', 'on'=>'search'),
);
}
- 为什么我们的课堂需要这个方法?
- 如何有效地使用它?
- 它对我们有什么帮助?在验证表格中???
- 任何人都可以解释它是如何工作的?
提前致谢。