如何在 CodeIgniter 中将 strip_tags 与第二个参数一起使用?
如何去除 HTML 标签,但不是所有标签?例如,我想在文本区域中有
、 等。
我有这个表单验证规则:
$this->form_validation->set_rules('user_desc', 'Opis', 'min_length[3]|max_length[200]|xss_clean|strip_tags');
How to strip HTML tags, but not all tags? For example i want to have <br>
, <b>
etc in textareas.
I have this form validation rule:
$this->form_validation->set_rules('user_desc', 'Opis', 'min_length[3]|max_length[200]|xss_clean|strip_tags');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
strip_tags()
与第二个参数一起使用。您可以构建一个允许元素的数组,然后将它们连接到第二个参数...
Use
strip_tags()
with the second argument.You could build an array of allowable elements and then join them for the second argument with...
使用
strip_tags($string, '
');
在第二个参数中包含所有允许的标签。
Use
strip_tags($string, '<b><br>');
In second parameter you include all the allowed tags.