123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?php
- namespace daswork;
- class Model
- {
- protected $db;
-
- function __construct(){
-
-
- $this->db = new MysqlidbModel();
- }
-
- function add($data){
-
-
- $cols=array();
-
- $vals=array();
-
- foreach($data as $key=>$val){
- $cols[]="`".$key."`";
- $vals[]="'".$val."'";
- }
-
-
-
-
-
-
- $str_cols=implode(',',$cols);
- $str_vals=implode(',',$vals);
-
-
- $sql="insert into ".$this->tablename."($str_cols) values($str_vals);";
-
- return $this->db->insert($sql );
- }
-
-
- function update($data,$where){
-
-
- $wherestr = '';
- if(!empty($where)){
- $wherestr .=' where '.$where;
- }
-
- $par_array=array();
- foreach($data as $key=>$val){
- $par_array[]="`".$key."`="."'".$val."'";
- }
-
-
- $param=implode(',',$par_array);
-
- $sql = "update ".$this->tablename." set ".$param." ".$wherestr." ";
-
- return $this->db->query($sql);
-
- }
-
- function get_lists($where, $limit=''){
-
- $wherestr = '';
- if(!empty($where)){
- $wherestr .=' where '.$where;
- }
- $sql = 'select * from '.$this->tablename.$wherestr . $limit;
- return $this->db->select($sql);
- }
- function get_sum($where){
- $wherestr = '';
- if(!empty($where)){
- $wherestr .=' where '.$where;
- }
-
- $sql = "select count(*) as sum from ".$this->tablename.$wherestr;
-
- $data = $this->db->get_row($sql);
-
- return $data['sum'];
- }
-
-
-
- function get_one($where){
-
- $wherestr = '';
- if(!empty($where)){
- $wherestr .=' where '.$where;
- }
-
- $sql = "select * from ".$this->tablename.$wherestr;
-
-
-
- $data = $this->db->get_row($sql);
-
- return $data;
- }
-
- function del($where){
-
- $wherestr = '';
- if(!empty($where)){
- $wherestr .=' where '.$where;
- }
-
-
- $sql = "delete from ".$this->tablename.$wherestr;
-
- $flag = $this->db->query($sql);
-
- return $flag;
-
- }
- }
|