加载中...

Yii-CHtmlPurifier- 净化器的使用(yii过滤不良代码)


  1. 在控制器中使用:
    1. public function actionCreate()
    2. {
    3. $model=new News;
    4. $purifier = new CHtmlPurifier();
    5. $purifier->options = array(
    6. 'URI.AllowedSchemes'=>array(
    7. 'http' => true,
    8. 'https' => true,
    9. ),
    10. 'HTML.Allowed'=>'div',
    11. );
    12.  
    13. if(isset($_POST['News']))
    14. {
    15. $model->attributes=$_POST['News'];
    16. $model->attributes['content'] = $purifier->purify($model->attributes['content']);
    17. if($model->save())
    18. $this->redirect(array('view','id'=>$model->id));
    19. }
    20. }

  2. 在模型中的使用:
    1. protected function beforeSave()
    2. {
    3. $purifier = new CHtmlPurifier();
    4. $purifier->options = array(
    5. 'URI.AllowedSchemes'=>array(
    6. 'http' => true,
    7. 'https' => true,
    8. ),
    9. 'HTML.Allowed'=>'div',
    10. );
    11.  
    12. if(parent::beforeSave()){
    13. if($this->isNewRecord){
    14. $this->create_data = date('y-m-d H:m:s');
    15. $this->content = $purifier->purify($this->content);
    16. }
    17. return true;
    18. }else{
    19. return false;
    20. }
    21. }

  3. 在过滤器中的使用:
    1. public function filters()
    2. {
    3. return array(
    4. 'accessControl', // perform access control for CRUD operations
    5. 'postOnly + delete', // we only allow deletion via POST request
    6. 'purifier + create', //载入插入页面时进行些过滤操作
    7. );
    8. }
    9.  
    10. public function filterPurifier($filterChain){
    11. $purifier = new CHtmlPurifier();
    12. $purifier->options = array(
    13. 'URI.AllowedSchemes'=>array(
    14. 'http' => true,
    15. 'https' => true,
    16. ),
    17. 'HTML.Allowed'=>'div',
    18. );
    19. if(isset($_POST['news']){
    20. $_POST['news']['content'] = $purify($_POST['news']['content']);
    21. }
    22. $filterChain->run();
    23. }

  4. 在视图中的使用:
    1. <?php $this->beginWidget('CHtmlPurifier'); ?>
    2. ...display user-entered content here...
    3. <?php $this->endWidget(); ?>




还没有评论.