您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“CI框架常用函數(shù)封裝”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“CI框架常用函數(shù)封裝”這篇文章吧。
具體如下:
/** * 封裝查詢函數(shù) */ public function get_what($table='',$where=array(),$fields = ' * '){ if( '' == $table ){ return false; } //查詢并返回相關(guān)結(jié)果 $query = $this->db->select($fields)->where($where)->get($table); $res = $query->result_array(); return $res; } /** * 封裝單條查詢函數(shù) */ public function get_row($table='',$where=array(),$fields = ' * '){ if( '' == $table ){ return false; } //查詢并返回相關(guān)結(jié)果 $query = $this->db->select($fields)->where($where)->get($table); $res = $query->row_array(); return $res; } /** * 封裝更新函數(shù) */ public function update_what($table='', $where=array(), $data = array()){ if('' == $table || true === empty($where) || true === empty($data)){ return false; } //更新相應(yīng)的字段 $query = $this->db->update($table,$data,$where); return $query; } /** * 擴(kuò)展數(shù)據(jù)庫函數(shù)之自增 自減 * using: * $table = 'codeuser'; $where = array('id'=>1); $data = array('usestate'=>'usestate+1','imgtype' => 'imgtype-1'); */ public function update_count($table = '', $where=array(), $data=array()){ //如果表名為空 或者數(shù)據(jù)為空則直接 返回false if('' == $table || empty($data)){ return false; } foreach($data as $key => $val){ if(false !== stripos($val,'+') || false !== stripos($val,'-')){ $this->db->set($key, $val, FALSE); }else{ $this->db->set($key, $val); } } $res = $this->db->where($where)->update($table); return $res; } /** * 封裝插入函數(shù) */ public function insert_what($table = '', $data = array()){ if('' == $table || true === empty($data)){ return false; } //插入 相關(guān)記錄 $query = $this->db->insert($table, $data); return $query; } /** * 刪除記錄封裝函數(shù) */ public function delete_what($table = '', $where=array()){ if(true === empty($where) || '' == $table){ return false; } //刪除相關(guān)表記錄 $query = $this->db->delete($table,$where); return $query; } /** * debug 相關(guān)函數(shù) */ public function debug_what($org_error = ''){ $con = $this->router->fetch_class(); $func = $this->router->fetch_method(); if($org_error){ $error .= date("Y-m-d H:i:s",time())."\r\n"; $error .= __FILE__."\r\n"; $error .= $con." 控制器下的:\r\n"; $error .= $func." 方法調(diào)試信息如下:\r\n"; $error .= $org_error;file_put_contents("./error_log.txt",$error."\r\n",FILE_APPEND); } }
以上是“CI框架常用函數(shù)封裝”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。