Answer the question
In order to leave comments, you need to log in
Convert to lowercase before saving?
Good afternoon, I can't figure out how to keep the text in lower case: I
apply a filter:
public function rules()
{
...
['username', 'filter', 'filter' => 'strtolower'],
}
Answer the question
In order to leave comments, you need to log in
you can write like this:
['username', 'filter', 'filter' => function ($value) {
return strtolower($value);
}],
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question