如何在Yii2验证规则消息

时间:2016-01-03 20:21:54

标签: php yii2 message line-breaks yii2-validation

我需要打破Yii2验证规则中使用的长消息。

我试过这样:

public function rules()
{
    return [
        ['username', 'required', 'message' => 'long message first line here'."<br>".PHP_EOL.'long message last line here'],
    ];
}

但是<br>出现在邮件中,并且该行不会在我需要的地方中断。

为了清楚起见,我得到的是:

 long message first line here<br>long message last line here

而不是:

 long message first line here
 long message last line here

任何可以提供帮助的人?我真的很感激!提前谢谢。

1 个答案:

答案 0 :(得分:6)

我已经解决了将此添加到ActiveForm :: begin

的问题
<?php $form = ActiveForm::begin([

        'fieldConfig' => [
            'errorOptions' => ['class' => 'help-block', 'encode' => false],
    ],

]); ?>

并使用简单的<br />

 [['username'], 'required', 'message' => 'long message first line here <br />long message last line here'],