欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

五种常见的PHP设计模式 博客分类: PHP php设计模式 

程序员文章站 2024-03-19 23:49:58
...

工厂模式

最初在设计模式 一书中,许多设计模式都鼓励使用松散耦合。要理解这个概念,让我们最好谈一下许多开发人员从事大型系统的艰苦历程。在更改一个代码片段时,就会发生问题,系统其他部分 —— 您曾认为完全不相关的部分中也有可能出现级联破坏。

该问题在于紧密耦合 。系统某个部分中的函数和类严重依赖于系统的其他部分中函数和类的行为和结构。您需要一组模式,使这些类能够相互通信,但不希望将它们紧密绑定在一起,以避免出现联锁。

在大型系统中,许多代码依赖于少数几个关键类。需要更改这些类时,可能会出现困难。例如,假设您有一个从文件读取的 User 类。您希望将其更改为从数据库读取的其他类,但是,所有的代码都引用从文件读取的原始类。这时候,使用工厂模式会很方便。

工厂模式 是一种类,它具有为您创建对象的某些方法。您可以使用工厂类创建对象,而不直接使用 new。这样,如果您想要更改所创建的对象类型,只需更改该工厂即可。使用该工厂的所有代码会自动更改。

下面显示工厂类的一个示列。等式的服务器端包括两个部分:数据库和一组 PHP 页面,这些页面允许您添加反馈、请求反馈列表并获取与特定反馈相关的文章。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 <?php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
interfaceIUser
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
functiongetName();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserimplementsIUser
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunction__construct($id){}
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctiongetName()
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
return"Jack";
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserFactory
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicstaticfunctionCreate($id)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
returnnewUser($id);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$uo=UserFactory::Create(1);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
echo($uo->getName()."");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
?>
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

IUser 接口定义用户对象应执行什么操作。IUser 的实现称为 UserUserFactory 工厂类则创建 IUser 对象。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

如果您使用 php 解释器在命令行上运行此代码,将得到如下结果,测试代码会向工厂请求 User 对象,并输出 getName 方法的结果。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpfactory1.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 Jack
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

单一模式

某些应用程序资源是独占的,因为有且只有一个此类型的资源。例如,通过数据库句柄到数据库的连接是独占的。您希望在应用程序*享数据库句柄,因为在保持连接打开或关闭时,它是一种开销,在获取单个页面的过程中更是如此。

单一模式可以满足此要求。如果应用程序每次包含且仅包含一个对象,那么这个对象就是一个单元素(Singleton)。下面的代码显示了 PHP V5 中的一个数据库连接单元素。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 <?php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
require_once("DB.php");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classDatabaseConnection
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicstaticfunctionget()
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
static$db=null;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($db==null)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$db=newDatabaseConnection();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
return$db;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
private$_handle=null;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
privatefunction__construct()
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$dsn='mysql://root:password@localhost/photos';
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_handle=&DB::Connect($dsn,array());
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionhandle()
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
return$this->_handle;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
print("Handle=".DatabaseConnection::get()->handle()."");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
print("Handle=".DatabaseConnection::get()->handle()."");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
?>
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

此代码显示名为 DatabaseConnection 的单个类。您不能创建自已的 DatabaseConnection,因为构造函数是专用的。但使用静态 get 方法,您可以获得且仅获得一个 DatabaseConnection 对象。

在两次调用间,handle 方法返回的数据库句柄是相同的,这就是最好的证明。您可以在命令行中运行代码来观察这一点。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpsingleton.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 Handle
=Objectid#3
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
Handle=Objectid#3
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%

返回的两个句柄是同一对象。如果您在整个应用程序中使用数据库连接单元素,那么就可以在任何地方重用同一句柄。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

您可以使用全局变量存储数据库句柄,但是,该方法仅适用于较小的应用程序。在较大的应用程序中,应避免使用全局变量,并使用对象和方法访问资源。

观察者模式

观察者模式为您提供了避免组件之间紧密耦合的另一种方法。该模式非常简单:一个对象通过添加一个方法(该方法允许另一个对象,即观察者 注册自己)使本身变得可观察。当可观察的对象更改时,它会将消息发送到已注册的观察者。这些观察者使用该信息执行的操作与可观察的对象无关。结果是对象可以相互对话,而不必了解原因。

一个简单示例是系统中的用户列表。如下代码显示一个用户列表,添加用户时,它将发送出一条消息。添加用户时,通过发送消息的日志观察者可以观察此列表。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 <?php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
interfaceIObserver
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
functiononChanged($sender,$args);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
interfaceIObservable
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
functionaddObserver($observer);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserListimplementsIObservable
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
private$_observers=array();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionaddCustomer($name)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
foreach($this->_observersas$obs)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$obs->onChanged($this,$name);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionaddObserver($observer)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_observers[]=$observer;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserListLoggerimplementsIObserver
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctiononChanged($sender,$args)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
echo("'$args'addedtouserlist ");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$ul=newUserList();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$ul->addObserver(newUserListLogger());
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$ul->addCustomer("Jack");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
?>

此代码定义四个元素:两个接口和两个类。IObservable 接口定义可以被观察的对象,UserList 实现该接口,以便将本身注册为可观察。IObserver 列表定义要通过怎样的方法才能成为观察者,UserListLogger 实现 IObserver 接口。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

如果在命令行中运行它,您将看到以下输出:

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpobserver.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
'Jack'addedtouserlist
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%

命令模式

命令链模式以松散耦合主题为基础,发送消息、命令和请求,或通过一组处理程序发送任意内容。每个处理程序都会自行判断自己能否处理请求。如果可以,该请求被处理,进程停止。您可以为系统添加或移除处理程序,而不影响其他处理程序。下面显示了此模式的一个示例。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 <?php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
interfaceICommand
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
functiononCommand($name,$args);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classCommandChain
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
private$_commands=array();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionaddCommand($cmd)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_commands[]=$cmd;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionrunCommand($name,$args)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
foreach($this->_commandsas$cmd)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($cmd->onCommand($name,$args))
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
return;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserCommandimplementsICommand
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctiononCommand($name,$args)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($name!='addUser')returnfalse;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
echo("UserCommandhandling'addUser' ");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
returntrue;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classMailCommandimplementsICommand
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctiononCommand($name,$args)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($name!='mail')returnfalse;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
echo("MailCommandhandling'mail' ");
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
returntrue;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$cc=newCommandChain();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$cc->addCommand(newUserCommand());
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$cc->addCommand(newMailCommand());
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$cc->runCommand('addUser',null);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$cc->runCommand('mail',null);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
?>
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

此代码定义维护 ICommand 对象列表的 CommandChain 类。两个类都可以实现 ICommand 接口 —— 一个对邮件的请求作出响应,另一个对添加用户作出响应。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

如果您运行包含某些测试代码的脚本,则会得到以下输出:

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpchain.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 UserCommandhandling
'addUser'
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 MailCommandhandling
'mail'
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

代码首先创建 CommandChain 对象,并为它添加两个命令对象的实例。然后运行两个命令以查看谁对这些命令作出了响应。如果命令的名称匹配 UserCommandMailCommand,则代码失败,不发生任何操作。

为处理请求而创建可扩展的架构时,命令链模式很有价值,使用它可以解决许多问题。

策略模式

我们讲述的最后一个设计模式是策略 模式。在此模式中,算法是从复杂类提取的,因而可以方便地替换。例如,如果要更改搜索引擎中排列页的方法,则策略模式是一个不错的选择。思考一下搜索引擎的几个部分 —— 一部分遍历页面,一部分对每页排列,另一部分基于排列的结果排序。在复杂的示例中,这些部分都在同一个类中。通过使用策略模式,您可将排列部分放入另一个类中,以便更改页排列的方式,而不影响搜索引擎的其余代码。

作为一个较简单的示例,下面代码显示了一个用户列表类,它提供了一个根据一组即插即用的策略查找一组用户的方法。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 <?php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
interfaceIStrategy
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
functionfilter($record);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classFindAfterStrategyimplementsIStrategy
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
private$_name;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunction__construct($name)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_name=$name;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionfilter($record)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
returnstrcmp($this->_name,$record)<=0;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classRandomStrategyimplementsIStrategy
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionfilter($record)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
returnrand(0,1)>=0.5;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
classUserList
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
private$_list=array();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunction__construct($names)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($names!=null)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
foreach($namesas$name)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_list[]=$name;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionadd($name)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$this->_list[]=$name;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
publicfunctionfind($filter)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$recs=array();
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
foreach($this->_listas$user)
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 {
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
if($filter->filter($user))
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$recs[]=$user;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
return$recs;
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 }
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$ul=newUserList(array("Andy","Jack","Lori","Megan"));
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$f1=$ul->find(newFindAfterStrategy("J"));
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
print_r($f1);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
$f2=$ul->find(newRandomStrategy());
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
print_r($f2);
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
?>

 

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

UserList 类是打包名称数组的一个包装器。它实现 find 方法,该方法利用几个策略之一来选择这些名称的子集。这些策略由 IStrategy 接口定义,该接口有两个实现:一个随机选择用户,另一个根据指定名称选择其后的所有名称。运行测试代码时,将得到以下输出:

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpstrategy.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
Array
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 (
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 [
0]=>Jack
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 [
1]=>Lori
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 [
2]=>Megan
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 )
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
Array
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 (
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 [
0]=>Andy
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 [
1]=>Megan
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 )
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%

测试代码为两个策略运行同一用户列表,并显示结果。在第一种情况中,策略查找排列在 J 后的任何名称,所以您将得到 Jack、Lori 和 Megan。第二个策略随机选取名称,每次会产生不同的结果。在这种情况下,结果为 Andy 和 Megan。

策略模式非常适合复杂数据管理系统或数据处理系统,二者在数据筛选、搜索或处理的方式方面需要较高的灵活性。

五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 %phpobserver.php
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
'Jack'addedtouserlist
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 
%
五种常见的PHP设计模式
            
    
    博客分类: PHP php设计模式 

测试代码创建UserList,并将 UserListLogger 观察者添加到其中。然后添加一个消费者,并将这一更改通知 UserListLogger

认识到 UserList 不知道日志程序将执行什么操作很关键。可能存在一个或多个执行其他操作的侦听程序。例如,您可能有一个向新用户发送消息的观察者,欢迎新用户使用该系统。这种方法的价值在于 UserList 忽略所有依赖它的对象,它主要关注在列表更改时维护用户列表并发送消息这一工作。

此模式不限于内存中的对象。它是在较大的应用程序中使用的数据库驱动的消息查询系统的基础。

相关标签: php 设计模式