当前位置: 首页>>代码示例>>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;未经允许,请勿转载。