Skip to content

Instantly share code, notes, and snippets.

@ninjacn
Created September 7, 2015 14:39
Show Gist options
  • Select an option

  • Save ninjacn/a0e47f2bd767a988b861 to your computer and use it in GitHub Desktop.

Select an option

Save ninjacn/a0e47f2bd767a988b861 to your computer and use it in GitHub Desktop.
yii 动态修改rule
class LoginForm extends CFormModel
{
public $username;
public $password;
}
$form = new LoginForm();
$form->validatorList->add(
CValidator::createValidator('required', $form, 'username, password')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment