本文實(shí)例講述了PHP實(shí)現(xiàn)的數(shù)據(jù)對(duì)象映射模式。分享給大家供大家參考,具體如下:
還是代碼說(shuō)話:這里還是遵循策略模式的psr-0代碼規(guī)范
數(shù)據(jù)表:
數(shù)據(jù)庫(kù)連接文件Db.php(如果沒(méi)有可以到前面一篇《PHP單例模式數(shù)據(jù)庫(kù)連接類與頁(yè)面靜態(tài)化》里面找)
自動(dòng)加載類文件Config.php(如果沒(méi)有可以去上一篇《PHP策略模式》里拿過(guò)來(lái))
入口文件DataUser.php
?php
define('BASEDIR', __DIR__);
//自動(dòng)加載在本文件中沒(méi)有被定義的類
require 'Config.php';
spl_autoload_register('Config::autolad');
//獲取數(shù)據(jù)
$user = new Data(1);
var_dump($user->id, $user->name, $user->money);
//如果想要修改數(shù)據(jù)
$user->id = 1;
$user->name = 'zhangjianping';
$user->money = 10000;
?>
獲取數(shù)據(jù)的文件Data.php
?php
class Data
{
//數(shù)據(jù)項(xiàng)
public $id;
public $name;
public $money;
//數(shù)據(jù)庫(kù)連接對(duì)象
protected $con;
//查詢數(shù)據(jù)的構(gòu)造函數(shù)
public function __construct($id)
{
//連接數(shù)據(jù)庫(kù)
$this->con = DB::getInstance()->connect();
//查詢數(shù)據(jù)
$res = $this->con->query('select * from account where id = '.$id.' limit 1');
$data = $res->fetch(PDO::FETCH_ASSOC);
//把取出來(lái)的數(shù)據(jù)項(xiàng)存儲(chǔ)起來(lái)
$this->id = $data['id'];
$this->name = $data['name'];
$this->money = $data['money'];
}
//修改數(shù)據(jù)的析構(gòu)函數(shù)
public function __destruct()
{
$this->con->query("update account set name = '{$this->name}', 'money = {$this->money}' where id = {$this->id}");
}
}
?>
下面我們就使用工廠模式,注冊(cè)樹(shù)模式,數(shù)據(jù)對(duì)象映射模式來(lái)完善一下這個(gè)例子
- 數(shù)據(jù)庫(kù)連接文件Db.php
- 自動(dòng)加載類文件Config.php
- 獲取數(shù)據(jù)的文件Data.php
我們將原來(lái)的入口文件改一下:
DataUser.php
?php
define('BASEDIR', __DIR__);
require 'Config.php';
spl_autoload_register(Config::autoload);
class DataUser
{
public function index()
{
//使用工廠模式來(lái)生成對(duì)象
$user = Factory::getUser(1);
var_dump($user->id);
$this->name();
$this->money();
}
public function name()
{
$user = Factory::getUser(1);
var_dump($user->name);
}
public function money()
{
$user = Factory::getUser(1);
var_dump($user->money);
}
}
?>
工廠類Factory.php
?php
class Factory
{
static function getUser($id)
{
//這里使用注冊(cè)器模式,不然的話,在上面的文件中,使用工廠模式生成對(duì)象得時(shí)候就會(huì)多次創(chuàng)建對(duì)象,很占用資源
//根據(jù)id不同插入到注冊(cè)樹(shù)對(duì)象中
$key = 'user_'.$id;
//從注冊(cè)器中取出對(duì)象
$user = Register::get($key);
//如果注冊(cè)器中沒(méi)有就創(chuàng)建一個(gè)對(duì)象并注冊(cè)上去
if(!isset($user))
{
$user = new Data($id);
$user = Register::set($key, $user);
}
return $user;
}
}
?>
注冊(cè)器類Register.php
?php
class Register
{
//存儲(chǔ)對(duì)象得變量
protected static $object;
//注冊(cè)入注冊(cè)器
public static function set($key, $value)
{
self::$object[$key] = $value;
}
//從注冊(cè)器中取出
public static function get($key)
{
return self::$object[$key];
}
//從注冊(cè)器中刪除
public static function _unset($key)
{
unset(self::$object[$key]);
}
}
?>
如果這時(shí)候我們將Data.php修改為Data1.php,那么在不使用工廠模式的時(shí)候就要一個(gè)一個(gè)的去修改類名,現(xiàn)在只需要在工廠模式中修改一下就好了,我們也可以打印出每一個(gè)對(duì)象,這時(shí)候我們會(huì)發(fā)現(xiàn)這3個(gè)對(duì)象都是一樣的,這是因?yàn)槲覀兪褂昧俗?cè)器模式。
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語(yǔ)法入門(mén)教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- PHP中數(shù)據(jù)庫(kù)單例模式的實(shí)現(xiàn)代碼分享
- php設(shè)計(jì)模式 DAO(數(shù)據(jù)訪問(wèn)對(duì)象模式)
- 淺析php設(shè)計(jì)模式之?dāng)?shù)據(jù)對(duì)象映射模式
- PHP基于單例模式實(shí)現(xiàn)的數(shù)據(jù)庫(kù)操作基類
- PHP的中使用非緩沖模式查詢數(shù)據(jù)庫(kù)的方法
- PHP單例模式應(yīng)用示例【多次連接數(shù)據(jù)庫(kù)只實(shí)例化一次】
- PHP單例模式數(shù)據(jù)庫(kù)連接類與頁(yè)面靜態(tài)化實(shí)現(xiàn)方法
- PHP數(shù)據(jù)對(duì)象映射模式實(shí)例分析
- PHP設(shè)計(jì)模式之?dāng)?shù)據(jù)訪問(wèn)對(duì)象模式(DAO)原理與用法實(shí)例分析
- PHP數(shù)據(jù)源架構(gòu)模式之表入口模式實(shí)例分析