search
HomeBackend DevelopmentPHP Tutorial PHP 兑现适配器(Adapter)模式

PHP 实现适配器(Adapter)模式

适配器模式核心思想:把对某些相似的类的操作转化为一个统一的“接口”(这里是比喻的说话)--适配器,或者比喻为一个“界面”,统一或屏蔽了那些类的细节。适配器模式还构造了一种“机制”,使“适配”的类可以很容易的增减,而不用修改与适配器交互的代码,符合“减少代码间耦合”的设计原则。

??? 以下示例,用接近伪码的 PHP 语法,演示了一个数据库操作的适配器类,它可以操作 MySQL 和 Oracle 数据库,但使用了相同的方法。由于使用了适配器(Adapter)模式,我们不必关心 MySQL 和 Oracle 数据库操作类的不同。

??? 我们还可以方便的添加进 SQLite 等数据库操作的类,“插入”适配器中,立即就可以用操作 MySQL 和 Oracle 相同的方法来操作 SQLite 数据库了。

??? //适配器类:
??? //定义了4个操作所有数据库的方法

<?php
class Db_adapter {
	private $db;
	
	function __construct($db_obj) {
		$this->db = $db_obj;
	}
	
	function select_record() {
		$this->db->select ();
	}
	
	function insert_record() {
		$this->db->insert ();
	}
	
	function update_record() {
		$this->db->update ();
	}
	
	function delete_record() {
		$this->db->delete ();
	}
}

//MySQL 数据库操作类:
class Mysql {
	private $obj_mysql;
	
	function __construct() {
        $obj_mysql = ......
		
		;
	}
	
	function select() {
		$obj_mysql->mysql_select ();
	}
	
	function insert() {
		$obj_mysql->mysql_insert ();
	}
	
	function update() {
		$obj_mysql->mysql_update ();
	}
	
	function delete() {
		$obj_mysql->mysql_delete ();
	}
}

//Oracle 数据库操作类:
class Oracle {
	private $obj_oracle;
	
	function __construct() {
        $obj_oracle = ......
		
		;
	}
	
	function select() {
		$obj_oracle->oracle_select ();
	}
	
	function insert() {
		$obj_oracle->oracle_insert ();
	}
	
	function update() {
		$obj_oracle->oracle_update ();
	}
	
	function delete() {
		$obj_oracle->oracle_delete ();
	}
}

    //操作 MySQL 数据库:
    $obj = new Db_adapter(new Mysql())
	$obj->select_record ();
	$obj->insert_record ();
	$obj->update_record ();
	$obj->delete_record ();

    //操作 Oracle 数据库:
    $obj = new Db_adapter(new Oracle())
	$obj->select_record ();
	$obj->insert_record ();
	$obj->update_record ();
	$obj->delete_record ();
?>

???? 要求:MySQL、Oracle 类,有相同名字、相同个数的方法。方法内部实现了各自的操作数据库的代码。转换就是在这里完成的。
??? 增加新的数据库操作:构造新的类,有相同名字、相同个数的方法。方法内部实现不被关心(被屏蔽) - 不同的数据库实现不同。
??? 小缺点:新的类,可能因为疏忽,导致方法名字不合要求、个数不同。
??? 为了减少出错的可能,可以改进一下。方法就是定义一个接口,作为模板来继承,达到规范化。

??? db_adapter 类里的方法,只需要使用 interface db_driver 里函数即可。

<?php
//定义一个接口,
interface Db_driver {
	function select();
	function insert();
	function update();
	function delete();
}

// 数据库操作类,比如 MySQL,Oracle 必须实现 db_driver 接口的同名方法,从而进行了规范。
class Mysql implements Db_driver {
	private $obj_mysql;
	
	function __construct() {
        $obj_mysql = ......
		;
	}

	//这里省略的代码同前边的 MySQL 类
}

class Oracle implements Db_driver {
	private $obj_oracle;
	
	function __construct() {
        $obj_oracle = ......
		;
	}

	//这里省略的代码同前边的 Oracle 类
}
?>
?
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
什么是oracle asm什么是oracle asmApr 18, 2022 pm 04:16 PM

oracle asm指的是“自动存储管理”,是一种卷管理器,可自动管理磁盘组并提供有效的数据冗余功能;它是做为单独的Oracle实例实施和部署。asm的优势:1、配置简单、可最大化推动数据库合并的存储资源利用;2、支持BIGFILE文件等。

oracle全角怎么转半角oracle全角怎么转半角May 13, 2022 pm 03:21 PM

在oracle中,可以利用“TO_SINGLE_BYTE(String)”将全角转换为半角;“TO_SINGLE_BYTE”函数可以将参数中所有多字节字符都替换为等价的单字节字符,只有当数据库字符集同时包含多字节和单字节字符的时候有效。

Oracle怎么查询端口号Oracle怎么查询端口号May 13, 2022 am 10:10 AM

在Oracle中,可利用lsnrctl命令查询端口号,该命令是Oracle的监听命令;在启动、关闭或重启oracle监听器之前可使用该命令检查oracle监听器的状态,语法为“lsnrctl status”,结果PORT后的内容就是端口号。

function是什么意思function是什么意思Aug 04, 2023 am 10:33 AM

function是函数的意思,是一段具有特定功能的可重复使用的代码块,是程序的基本组成单元之一,可以接受输入参数,执行特定的操作,并返回结果,其目的是封装一段可重复使用的代码,提高代码的可重用性和可维护性。

oracle查询怎么不区分大小写oracle查询怎么不区分大小写May 10, 2022 pm 05:45 PM

方法:1、利用“LOWER(字段值)”将字段转为小写,或者利用“UPPER(字段值)”将字段转为大写;2、利用“REGEXP_LIKE(字符串,正则表达式,'i')”,当参数设置为“i”时,说明进行匹配不区分大小写。

oracle中字符怎么转大写oracle中字符怎么转大写May 13, 2022 am 10:59 AM

在oracle中,可以利用upper()函数将字符转为大写,该函数的作用就是将指定表中指定字段包含的字母全部转成大写,该函数配合select语句即可进行转换,语法为“select upper(指定字段的名称) from 指定表的名称”。

oracle怎么修改列长度oracle怎么修改列长度May 13, 2022 am 10:48 AM

在oracle中,可以利用modify配合“alter table”语句来修改列的长度,modify的作用就是修改字段类型和长度,也即修改字段的属性,语法为“alter table 表名 modify 列名 字段类型 需要修改的字段长度”。

oracle 11g中的g是什么意思oracle 11g中的g是什么意思May 07, 2022 pm 06:02 PM

在oracle中,11g中的g是网格运算的意思,是grid的缩写;oracle 11g的版本是为了迎合分布式计算而做出的变化,因此做出了网格运算方面的改进,是oracle支持网格计算环境的体现,与8i中i代表internet的情况类似。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment