美文网首页ECJia
ecjia HTMLPurifier 防止 XSS 跨站攻击

ecjia HTMLPurifier 防止 XSS 跨站攻击

作者: 东方皓 | 来源:发表于2019-04-05 22:03 被阅读0次

可以使用辅助函数clean()

clean(Input::get('inputname'));

或者使用RC_Purifier门面提供的clean方法:

RC_Purifier::clean(Input::get('inputname'));

还可以在应用中进行动态配置:

clean('This is my H1 title', 'titles');

clean('This is my H1 title', array('Attr.EnableID' => true));

或者你也可以使用RC_Purifier门面提供的方法:

RC_Purifier::clean('This is my H1 title', 'titles');

RC_Purifier::clean('This is my H1 title', array('Attr.EnableID' => true));

相关文章

网友评论

    本文标题:ecjia HTMLPurifier 防止 XSS 跨站攻击

    本文链接:https://www.haomeiwen.com/subject/ukzkiqtx.html