加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php数据库操作model类(使用__call方法)

发布时间:2020-12-12 21:52:03 所属栏目:PHP教程 来源:网络整理
导读:本篇章节讲解php数据库操作model类。供大家参考研究具体如下: 该数据库操作类使用__call()方法实现了数据的查找功能。 代码如下: "","order" => "","limit" => "","group" => "","having" => "" ); public function __construct($tableName){ $t

本篇章节讲解php数据库操作model类。分享给大家供大家参考,具体如下:

该数据库操作类使用__call()方法实现了数据的查找功能。

代码如下:

"","order" => "","limit" => "","group" => "","having" => "" ); public function __construct($tableName){ $this -> tableName = $tableName; try{ $this -> link = mysqli_connect(HOSTNAME,USERNAME,PASSWORD,DATANAME); mysqli_set_charset($this -> link,"UTF8"); }catch(Exception $e){ echo "数据库连接失败"; } $this -> desc(); } public function __destruct(){ mysqli_close($this -> link); } public function desc(){ $sql = " desc {$this -> tableName}; "; $res = mysqli_query($this -> link,$sql); $arr = mysqli_fetch_all($res,MYSQLI_ASSOC); for($i = 0 ;$i < count($arr);$i++){ $brr[] = $arr[$i]['Field']; } $this -> zd = $brr; return $brr; } public function __call($name,$value){ $name = strtolower($name); if(array_key_exists($name,$this -> method)){ if($name == 'order'){ $this -> method['order'] = " order by ".$value[0]; }elseif($name == 'group'){ $this -> method['group'] = " group by ".$value[0]; }else{ $this -> method[$name] = " {$name} ".$value[0]; } }else{ return "the method is not found!"; } return $this; } public function method(){ return " {$this -> method['where']} {$this -> method['order']} {$this -> method['limit']} {$this -> method['group']} {$this -> method['having']}; "; } public function find($a="*"){ if(in_array("{$a}",$this -> zd) || $a == "*"){ $sql = "select {$a} from {$this -> tableName} {$this -> method()} "; }else{ $sql = "select * from {$this -> tableName}"; } //return $sql; $res = mysqli_query($this -> link,MYSQLI_ASSOC); return $arr; } }

用法示例:

where("name = 'zhu'")->limit("5,10"); var_dump($a -> find("name"));

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《》

希望本文所述对大家PHP程序设计有所帮助。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读