Yii凈化器CHtmlPurifier用法示例(過濾不良代碼)
來源:易賢網(wǎng) 閱讀:908 次 日期:2016-08-13 13:29:02
溫馨提示:易賢網(wǎng)小編為您整理了“Yii凈化器CHtmlPurifier用法示例(過濾不良代碼)”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了Yii凈化器CHtmlPurifier用法,可實現(xiàn)過濾不良代碼的功能,涉及在控制器、模型、過濾器及視圖中的相關(guān)使用技巧,需要的朋友可以參考下

1. 在控制器中使用:

public function actionCreate()

{

  $model=new News;

  $purifier = new CHtmlPurifier();

  $purifier->options = array(

    'URI.AllowedSchemes'=>array(

              'http' => true,

              'https' => true,

    ),

       'HTML.Allowed'=>'div',

  );

  if(isset($_POST['News']))

  {

    $model->attributes=$_POST['News'];

    $model->attributes['content'] = $purifier->purify($model->attributes['content']);

    if($model->save())

      $this->redirect(array('view','id'=>$model->id));

  }

}

2. 在模型中的使用:

protected function beforeSave()

{

  $purifier = new CHtmlPurifier();

  $purifier->options = array(

    'URI.AllowedSchemes'=>array(

              'http' => true,

              'https' => true,

    ),

       'HTML.Allowed'=>'div',

  );

  if(parent::beforeSave()){

    if($this->isNewRecord){

      $this->create_data = date('y-m-d H:m:s');

      $this->content = $purifier->purify($this->content);

    }

    return true;

  }else{

    return false;

  }

}

3. 在過濾器中的使用:

public function filters()

{

  return array(

    'accessControl', // perform access control for CRUD operations

    'postOnly + delete', // we only allow deletion via POST request

    'purifier + create', //載入插入頁面時進行些過濾操作

  );

}

public function filterPurifier($filterChain){

  $purifier = new CHtmlPurifier();

  $purifier->options = array(

    'URI.AllowedSchemes'=>array(

              'http' => true,

              'https' => true,

    ),

       'HTML.Allowed'=>'div',

  );

  if(isset($_POST['news']){

    $_POST['news']['content'] = $purify($_POST['news']['content']);

  }

    $filterChain->run();

}

4. 在視圖中的使用:

<?php $this->beginWidget('CHtmlPurifier'); ?>

...display user-entered content here...

<?php $this->endWidget(); ?>

希望本文所述對大家基于Yii框架的PHP程序設(shè)計有所幫助。

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:Yii凈化器CHtmlPurifier用法示例(過濾不良代碼)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)