可以使用辅助函数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));
网友评论