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'),
);
}
- クラスでこのメソッドが必要な理由
- 効果的な使い方は?
- それはどこで私たちを助けますか? フォームの検証中???
- 誰でもそれがどのように機能するかを説明できますか?
前もって感謝します。