当前位置: 首页>>代码示例>>PHP>>正文


PHP Base_model::remove方法代码示例

本文整理汇总了PHP中Base_model::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP Base_model::remove方法的具体用法?PHP Base_model::remove怎么用?PHP Base_model::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Base_model的用法示例。


在下文中一共展示了Base_model::remove方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: remove

 public function remove($id)
 {
     $this->load->model('Ad_model', 'ad');
     $this->ad->rm_by_position($id);
     $result = parent::remove($id);
     return $result;
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:7,代码来源:Ad_position_model.php

示例2: remove

 public function remove($id)
 {
     $result = parent::remove($id);
     if ($result) {
         $this->load->model('admin_log_model', 'admin_log');
         foreach ($id as $_id) {
             $this->admin_log->clear($_id);
         }
         return TRUE;
     } else {
         return FALSE;
     }
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:13,代码来源:Manager_model.php

示例3: remove

 public function remove($id)
 {
     $rows = $this->search(array('ids' => $id));
     if (empty($rows)) {
         return FALSE;
     }
     foreach ($rows as $row) {
         if (($row['media_type'] == 'img' || $row['media_type'] == 'flash') && !empty($row['content'])) {
             $ad_file = APPPATH . "../data/{$row['content']}";
             file_exists($ad_file) && unlink($ad_file);
         }
     }
     return parent::remove($id);
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:14,代码来源:Ad_model.php

示例4: remove

 public function remove($id)
 {
     $rows = $this->db->where_in('id', $id)->get($this->table)->result_array();
     if (empty($rows)) {
         return FALSE;
     }
     foreach ($rows as $row) {
         if (!empty($row['logo'])) {
             $link_file = APPPATH . "../data/{$row['logo']}";
             file_exists($link_file) && unlink($link_file);
         }
     }
     return parent::remove($id);
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:14,代码来源:Links_model.php

示例5: remove

 public function remove($id)
 {
     $course = parent::get(array('id' => $id));
     $this->db->query('update user set god_course_count = god_course_count - 1 where id = ' . $course['god']);
     parent::remove($id);
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:6,代码来源:God_course_model.php

示例6: remove

 public function remove($id)
 {
     $result = parent::remove($id);
     return $result;
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:5,代码来源:Material_text_model.php

示例7: remove

 public function remove($id, $pot = '')
 {
     $this->switching($this->_idx_table, $pot);
     return parent::remove($id);
 }
开发者ID:shuai959980629,项目名称:TTDV1,代码行数:5,代码来源:Sharding_model.php


注:本文中的Base_model::remove方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。