数据访问对象模式
Posted 罗夏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据访问对象模式相关的知识,希望对你有一定的参考价值。
数据访问对象模式
该设计模式描述了如何创建提供透明访问任何数据源的对象.
// 这是一个单利模式用于提供mysql pdo链接 class MysqlConnect { protected $link = null; protected static $instance = null; public static function getInstance() { if (is_null(self::$instance)) { self::$instance = new MysqlConnect(); } return self::$instance; } protected function __construct() { $this->connect(); } public function connect() { if (is_null($this->link)) { $this->link = new PDO(‘mysql:host=127.0.0.1;dbname=test‘, ‘root‘, ‘root‘); } } public function close() { $this->link = null; } public function getLink() { return $this->link; } } abstract class DAO { protected $table = null; protected $link = null; public function __construct() { $this->link = MysqlConnect::getInstance()->getLink(); } public function fetch() { $res = $this->link->query("SELECT * FROM {$this->table}"); $data = array(); foreach ($res as $row) { $data[] = $row; } return $data; } } class CD extends DAO { protected $table = ‘cd‘; } $cd = new CD(); var_dump($cd->fetch());
以上是关于数据访问对象模式的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向使用 Python 解析 ELF 文件 ( Capstone 反汇编 ELF 文件中的机器码数据 | 创建反汇编解析器实例对象 | 设置汇编解析器显示细节 )(代码片段