茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

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

    這篇文章主要介紹了Yii凈化器CHtmlPurifier用法,可實(shí)現(xiàn)過(guò)濾不良代碼的功能,涉及在控制器、模型、過(guò)濾器及視圖中的相關(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. 在過(guò)濾器中的使用:

    public function filters()

    {

      return array(

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

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

        'purifier + create', //載入插入頁(yè)面時(shí)進(jìn)行些過(guò)濾操作

      );

    }

    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(); ?>

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

    更多信息請(qǐng)查看網(wǎng)絡(luò)編程
    易賢網(wǎng)手機(jī)網(wǎng)站地址:Yii凈化器CHtmlPurifier用法示例(過(guò)濾不良代碼)
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2026上岸·考公考編培訓(xùn)報(bào)班

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)