封装对象类
Posted 天啊鲁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了封装对象类相关的知识,希望对你有一定的参考价值。
<?php class DBDA { public $host="localhost";//服务器地址 public $uid="root";//用户名 public $pwd="3177389";//用户密码 public function Query($sql,$type=1,$db="my test") { //造连接对象 $conn=new mysqli($this->host,$this->uid,$this->pwd,$db); //判断连接是否成功 !mysqli_connect_error()or die("连接失败!"); //执行sql语句 $result=$conn->query($sql); //判断语句类型 if($type==1) {//如果是查询语句返回结果集的二维数组 return $result->fetch_all(); } else {//如果是其他语句,返回true or false return $result; } } }
以上是关于封装对象类的主要内容,如果未能解决你的问题,请参考以下文章