本文实例讲述了php数据对象映射模式。分享给大家供大家参考,具体如下:
将对象和数据存储映射起来,对一个对象的操作映射为对数据存储的操作。
例如在代码中new
一个对象,使用数组对象映射模式可以将对象的一些操作,比如设置一些属性,就会自动保存到数据库,跟数据库表的一条记录对应起来
在代码中实现数据对象映射模式,我们将实现一个orm类,将复杂的sql语句映射成对象属性的操作。同时结合工厂模式和注册模养殖大户式使用
例1
【例1】
数据库 test ,ur 表结构:
create table `ur` ( `id` int(11) not null auto_increment, `name` varchar(32) character t utf8 default null, `mobile` varchar(11) character t utf8 default null, `regtime` timestamp null default null on update current_timestamp, primary key (`id`)) engine=innodb auto_increment=2 default chart=latin1;
common\ur.php:
<?phpnamespace common;class ur{ public $id; public $name; public $mobile; public $regtime; protected $db; //构造方法 function __construct($id) { $this->db = new databa\mysqli(); $conn = $this->db->connect('127.0.0.1', 'root', '', 'test'); $res = $this->db->query("lect * from ur where id = {$id} limit 1"); $data = $res->fetch_assoc(); $this->id = $data['id']; $this->name = $data['name']; $this->mobile = $data['mobile']; $this->regtime = $data['regtime']; } //析构方法 function __destruct() { $this->db->query("update ur t na障碍me = '{$this->name}', mobile = '{$this->mobile}', regtime = '{$this->regtime}' where id = {$this->id} limit 1"); }}
common\databas\mysqli.php
<?phpnamespace common\databa;u common\idataba;class mysqli implements idataba{ protected $conn; function connect($host, $ur, $passwd, $dbname){ $conn = mysqli_connect($host, tanx定义域$ur, $passwd ,$dbname); $this->conn = $conn; } function query($sql){ $res = mysqli_query($this->conn, $sql); return $res; } function clo(){ mysqli_clo($this->conn); }}
入口文件 index.php
<?php define('badir',__dir__); //定义根目录常量 include badir.'/common/loader.php'; spl_autoload_register('\\common\\loa南京农业大学排名der::autoload'); echo '<meta http-equiv="content-type" content="text/html;chart=utf8">'; /* * 对对象属性的操作就完成了对数据库的操作 */ $ur = new common\ur(1); //读取数据 var_dump($ur->id, $ur->mobile, $ur->name, $ur->法定节假日天数;regtime);exit(); $ur->mobile = '13800138000'; $ur->name = 'arshavin'; $ur->regtime = date("y-m-d h:i:s",time());
更多关于php相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《php数组(array)操作技巧大全》、《php基本语法入门教程》、《php运算与运算符用法总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
本文发布于:2023-04-07 09:36:59,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/aee2f4d1869dd4e6b33c6c61a2dda37f.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP数据对象映射模式实例分析.doc
本文 PDF 下载地址:PHP数据对象映射模式实例分析.pdf
留言与评论(共有 0 条评论) |