求助,成功信息怎么提示,对应addError($attributes,'错误信息'); [ 新手入门 ]
我想实现用户输入信息的时候进行验证,错误时,可以通过
$this->addError($attributes,'$message');
来发送错误的信息
那么如果验证成功我怎么设置呢?
if($params['type']==='realName'){
if($this->real_name != ""){
//$match='/^[\x80-\xff]{4,18}$/';
$match='/^[\x{4e00}-\x{9fa5}]{2,4}$/u';
if(preg_match($match,$this->real_name)){
$this->real_name=$this->real_name;
}else{
$this->addError($attribute, '真实姓名格式不正确!');
return false;
}
}else{
$this->addError($attribute, '真实姓名不能为空');
return false;
}
}
共 0 条回复
没有找到数据。
凯凯哥
注册时间:2013-04-26
最后登录:2019-04-25
在线时长:1小时4分
最后登录:2019-04-25
在线时长:1小时4分
- 粉丝0
- 金钱25
- 威望10
- 积分135