I need to break the long message used in the Yii2 validation rule.
I tried like this:
public function rules()
{
return [
['username', 'required', 'message' => 'long message first line here'."<br>".PHP_EOL.'long message last line here'],
];
}
but a message appears in the message <br>and the line does not break where I need to.
To be clear, I get:
long message first line here<br>long message last line here
and not:
long message first line here
long message last line here
Who can help with this? I would be very grateful! Thank you in advance.
source
share