博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
52)PHP,加了单例模式的数据库代码
阅读量:5158 次
发布时间:2019-06-13

本文共 2274 字,大约阅读时间需要 7 分钟。

1 
link){18 $this->link=new self($config);19 //这里还可以这样写:20 //$this->link=$this->__construct($config);21 //因为实例化对象就是调用一次类的__construct()函数。22 23 }24 return $this->link;25 26 }27 //下面的这个克隆函数变成私有的,这样就能在类的外面克隆了。28 private function __clone(){}29 /********************************************************************30 ********************************************************************31 ** !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! *******32 *******************************************************************************/33 /*34 * 构造函数35 * 主机名,使用者,使用者密码,数据库的名字,查询语句36 */37 public function __construct($config) {38 $this->host=$config['host'];39 $this->User=$config['user'];40 $this->Pwd=$config['pwd'];41 $this->Dbname=$config['dbname'];42 $this->my_sql=$config['sql'];43 //这个也是摘过来的的(if)44 //if ( is_null(self::$_dbh) ) {
45 $this->link= $this->_connect();46 // }47 $this->result= $this->Query($this->my_sql);48 49 }50 51 //成员方法 是用来执行sql语句的方法52 /*53 * 数据库查询函数54 * $sql string 是你的查询语句55 */56 public function Query($sql)57 //两个参数:sql语句,判断返回1查询或是增删改的返回58 {59 $db = $this->connect();60 $r = $db->query($sql);61 if (isset($r)) {62 return $r->fetch_all();//查询语句,返回数组.执行sql的返回方式是all,也可以换成row63 } else {64 return "数据库查询失败!";65 }66 67 68 }69 /*70 * 数据库连接函数71 */72 public function connect(){73 $Link= mysqli_connect($this->host,$this->User,$this->Pwd,$this->Dbname);74           //$this->dbh=75 return $Link;76 }77 78 }79 //$sql='select * from zixun;';80 //$config=include './BBB.php';81 // $shujuku=new db($config);82 83 84 // include './login.html';85 //var_dump($shujuku->result);86 87 ?>

注意在实例化具有了单例模式函数的类时,是这样实例化的:                         类名::instance($config);

转载于:https://www.cnblogs.com/xiaoyoucai/p/7371766.html

你可能感兴趣的文章
BZOJ4372: 烁烁的游戏【动态点分治】
查看>>
C#里如何遍历枚举所有的项
查看>>
FPGA的上电复位
查看>>
工作那些事(三十一)怎样带好一个项目团队
查看>>
如何在键盘出现时滚动表格,以适应输入框的显示
查看>>
超级强大的鼠标手势工具
查看>>
常用Dockerfile举例
查看>>
Python的安装部署
查看>>
jquery的ajax用法
查看>>
设计模式-策略模式(Strategy)
查看>>
关于CALayer导致的crash问题
查看>>
sqoop导出数据|Hive|HDFS和脚本编写
查看>>
关于vue中watch和computed
查看>>
django orm 数据查询详解
查看>>
JarvisOJ Basic 熟悉的声音
查看>>
C# list导出Excel(二)
查看>>
CAS 单点登录模块学习
查看>>
跟着辛星用PHP的反射机制来实现插件
查看>>
Android应用开发-网络编程①
查看>>
input中的name,value以及label中的for
查看>>