Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Use scripts in Yii or write your own rule for validation
Here is information on scripts and
validation :
Write your validation rule like this:
public function rules() {
return [
['input', 'required'],
['input', function($attribute, $params) {
if (is_integer($this->$attribute)) {
//если число
if ($this->attribute < 10) {
return $this->addError($attribute, 'Число должно быть больше 10');
}
}
if (is_string($this->$attribute)) {
//ecли строка
}
}],
];
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question