我需要从html标签,引号等过滤来自hmtl表单的数据。
似乎我需要根据http://www.yiiframework.com/doc-2.0/yii-validators-filtervalidator.html编写自己的过滤器回调函数。我在我的模型中得到了这些规则:
public function rules()
{
return [
[['name', 'email', 'phone',], 'required'],
[['course'], 'string',],
[['name', 'email', 'phone',], 'string', 'max'=>250],
['email', 'email'],
[['name', 'email', 'phone'], function($value){
return trim(htmlentities(strip_tags($value), ENT_QUOTES, 'UTF-8'));
}],
];
}
最后一条规则是我自己添加的过滤器。但它没有用。标签,空格,qoutes不会删除,此过滤器甚至不运行。如何实现我想要的和我做错的事情?
谢谢
答案 0 :(得分:4)
您正在添加验证器错误。如果您想使用FilterValidator
(在问题中提到)而不是内联验证器,请更改您的代码:
[['name', 'email', 'phone'], 'filter', 'filter' => function($value) {
return trim(htmlentities(strip_tags($value), ENT_QUOTES, 'UTF-8'));
}],
['name', 'email', 'phone']
- 经过验证的属性。
filter
- 验证者短名称。查看完整的合规列表here。
下一个元素是将传递给此验证器的参数。在这种情况下,我们指定了filter参数。
请参阅特定验证人的官方文档中的可用参数的完整列表。