當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Content::del方法代碼示例

本文整理匯總了PHP中Content::del方法的典型用法代碼示例。如果您正苦於以下問題:PHP Content::del方法的具體用法?PHP Content::del怎麽用?PHP Content::del使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Content的用法示例。


在下文中一共展示了Content::del方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: batchDel

 /**
  * 批量刪除
  */
 public function batchDel()
 {
     $aid = Q('aid', '', '');
     if (empty($aid)) {
         $this->error('請選擇文章');
     }
     $ContentModel = new Content();
     foreach ($aid as $id) {
         $ContentModel->del($id);
     }
     $this->success('刪除成功');
 }
開發者ID:suhanyujie,項目名稱:spider,代碼行數:15,代碼來源:ContentAuditController.class.php

示例2: del

 public function del()
 {
     $aids = Q("request.aid");
     if (!empty($aids)) {
         if (!is_array($aids)) {
             $aids = array($aids);
         }
         $Model = new Content($this->mid);
         foreach ($aids as $aid) {
             $Model->del($aid);
         }
         $this->success('刪除成功');
     } else {
         $this->error('參數錯誤');
     }
 }
開發者ID:lililishuang,項目名稱:hdcms,代碼行數:16,代碼來源:ContentAuditController.class.php

示例3: del

 public function del()
 {
     //驗證權限
     $this->checkAccess();
     if ($aid = Q('aid', 0)) {
         $ContentModel = new Content();
         if ($ContentModel->del($aid)) {
             $this->success('刪除成功');
         } else {
             $this->error($ContentModel->error);
         }
     } else {
         $this->error('參數錯誤');
     }
 }
開發者ID:suhanyujie,項目名稱:spider,代碼行數:15,代碼來源:ContentController.class.php

示例4: del

 public function del()
 {
     $aid = Q('aid', 0);
     if ($aid) {
         $ContentModel = new Content($this->_mid);
         if ($ContentModel->del($aid)) {
             $this->success('刪除成功');
         } else {
             $this->error($ContentModel->error);
         }
     } else {
         $this->error('參數錯誤');
     }
 }
開發者ID:jyht,項目名稱:v5,代碼行數:14,代碼來源:ContentControl.class.php

示例5: del

 /**
  * 刪除文章
  */
 public function del()
 {
     $aid = Q('aid', 0, 'intval');
     if (!$aid) {
         $this->error('文章不存在');
     }
     $ContentModel = new Content($this->_mid);
     $result = $ContentModel->find($aid);
     if ($result['uid'] != $_SESSION['uid']) {
         $this->error('沒有刪除權限');
     }
     if ($ContentModel->del($aid)) {
         $this->success('刪除成功');
     } else {
         $this->error('aid參數錯誤');
     }
 }
開發者ID:jyht,項目名稱:v5,代碼行數:20,代碼來源:ContentControl.class.php

示例6: del

 public function del()
 {
     if (!$this->ContentAccess->isDel($this->_cid)) {
         $this->error('沒有操作權限');
     }
     $aid = Q('aid', 0);
     if ($aid) {
         $ContentModel = new Content($this->_mid);
         if ($ContentModel->del($aid)) {
             $this->success('刪除成功');
         } else {
             $this->error($ContentModel->error);
         }
     } else {
         $this->error('參數錯誤');
     }
 }
開發者ID:jyht,項目名稱:v5,代碼行數:17,代碼來源:ContentControl.class.php


注:本文中的Content::del方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。