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


PHP Base_model::get方法代码示例

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


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

示例1: get_json

 /**
  * get_json 通过json获得问题列表
  * @param  [type] $json  [description]
  * @param  [type] $page  [description]
  * @param  [type] $count [description]
  * @return [type]        [description]
  */
 public function get_json($json, $page = 0, $count = 20)
 {
     $index = 0;
     $returnData = array();
     $json = json_decode($json);
     $json = array_slice($json, $page, $count);
     foreach ($json as $value) {
         $data = parent::get(array('id' => $value));
         $data['ctime'] = date("H:i:s", strtotime($data['ctime']));
         @($data['tags'] = $this->tag_model->get_list_by_json($data['tags']));
         $returnData[] = $data;
         $index++;
     }
     return $returnData;
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:22,代码来源:Problem_model.php

示例2: get_problem_json

 }
 public function get_problem_json($pid, $type = 'collect_problems')
 {
     $temp_collect = array();
     $collect = json_decode($this->me[$type]);
     foreach ($collect as $key => $value) {
         if ($value->t != $pid) {
             array_push($temp_collect, array("t" => $value->t));
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:8,代码来源:User_model.php

示例3: 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

示例4: get_content

 public function get_content($type)
 {
     return parent::get(array('type' => $type))['content'];
 }
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:4,代码来源:Site_model.php

示例5: get

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

示例6: add_active_user

     }
     return $result;
 }
 public function add_active_user($tag_id, $user_id, $is_god = false)
 {
     $type = $is_god ? 'active_god' : 'active_stu';
     $tag = parent::get(array('id' => $tag_id));
     $list = json_decode($tag[$type]);
     if (!empty($list->{$user_id})) {
         $list->{$user_id}++;
     } else {
         $list->{$user_id} = 1;
     }
     parent::edit($tag_id, array($type => json_encode($list)));
 }
 public function get_active_user($tag_id, $count = 5, $is_god = false)
 {
开发者ID:TF-Joynic,项目名称:tiandi,代码行数:17,代码来源:Tag_model.php


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