我在Yii中有一個表單。我如何驗證Yii中的url
它有模型驗證。
在這種形式中,我必須在文本字段中插入url。
eg:https://www.google.co.in
在數據庫中,我將字段保存爲varchar。
規則模型是
public function rules() {
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('url', 'required'),
array('name, url', 'length', 'max' => 255),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('name, url', 'safe', 'on' => 'search'),
);
}
我怎樣才能保持驗證了這模型?