本文实例讲述了PHP数据对象映射模式。分享给大家供大家参考,具体如下:
将对象和数据存储映射起来,对一个对象的操作映射为对数据存储的操作。
例如在代码中new
一个对象,使用数组对象映射模式可以将对象的一些操作,比如设置一些属性,就会自动保存到数据库,跟数据库表的一条记录对应起来
在代码中实现数据对象映射模式,我们将实现一个ORM类,将复杂的SQL语句映射成对象属性的操作。同时结合工厂模式和注册模式使用
例1
【例1】
数据库 test ,user 表结构:
?
1
2
3
4
5
6
7
|
CREATE TABLE ` user ` (
`id` int (11) NOT NULL AUTO_INCREMENT,
` name ` varchar (32) CHARACTER SET utf8 DEFAULT NULL ,
`mobile` varchar (11) CHARACTER SET utf8 DEFAULT NULL ,
`regtime` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP ,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
|
Common\\User.php:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
namespace Common;
class User{
public $id ;
public $name ;
public $mobile ;
public $regtime ;
protected $db ;
//构造方法
function __construct( $id ) {
$this ->db = new Database\\MySQLi();
$conn = $this ->db->connect( '127.0.0.1' , 'root' , '' , 'test' );
$res = $this ->db->query( "select * from user 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 user set name = '{$this->name}', mobile = '{$this->mobile}', regtime = '{$this->regtime}' where id = {$this->id} limit 1" );
}
}
|
Common\\Databases\\MySQLi.php
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Common\\Database;
use Common\\IDatabase;
class MySQLi implements IDatabase{
protected $conn ;
function connect( $host , $user , $passwd , $dbname ){
$conn = mysqli_connect( $host , $user , $passwd , $dbname );
$this ->conn = $conn ;
}
function query( $sql ){
$res = mysqli_query( $this ->conn, $sql );
return $res ;
}
function close(){
mysqli_close( $this ->conn);
}
}
|
入口文件 index.php
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
define( 'BASEDIR' ,__DIR__); //定义根目录常量
include BASEDIR. '/Common/Loader.php' ;
spl_autoload_register( '\\\\Common\\\\Loader::autoload' );
echo '<meta http-equiv="content-type" content="text/html;charset=utf8">' ;
/*
* 对对象属性的操作就完成了对数据库的操作
*/
$user = new Common\\User(1);
//读取数据
var_dump( $user ->id, $user ->mobile, $user ->name, $user ->regtime); exit ();
$user ->mobile = '13800138000' ;
$user ->name = 'Arshavin' ;
$user ->regtime = date ( "Y-m-d H:i:s" ,time());
|
希望本文所述对大家PHP程序设计有所帮助。
相关文章
猜你喜欢
- 64M VPS建站:怎样优化以提高网站加载速度? 2025-06-10
- 64M VPS建站:是否适合初学者操作和管理? 2025-06-10
- ASP.NET自助建站系统中的用户注册和登录功能定制方法 2025-06-10
- ASP.NET自助建站系统的域名绑定与解析教程 2025-06-10
- 个人服务器网站搭建:如何选择合适的服务器提供商? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
Linux如何安装使用pidstat命令以对进程数据进行监控
2025-05-27 58 -
2025-05-29 67
-
Linux在批量服务器管理中实用的PS1命令提示符格式实现方法
2025-05-27 66 -
通过Webflow设计响应式网页,有哪些技巧可以确保兼容性?
2025-05-25 42 -
2025-06-04 101
热门评论