php设计模式责任链模式

Posted itsuibi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php设计模式责任链模式相关的知识,希望对你有一定的参考价值。

  责任链模式为请求创建了一个接收者对象的链。这种模式给予请求的类型,对请求的发送者和接收者进行解耦。这种类型的设计模式属于行为型模式。

  在这种模式中,通常每个接收者都包含对另一个接收者的引用。如果一个对象不能处理该请求,那么它会把相同的请求传给下一个接收者,依此类推。

<?php
define("WARNING_LEVEL", 1);
define("DEBUG_LEVEL", 2);
define("ERROR_LEVEL", 3);

abstract class AbstractLog
    protected $level;
    protected $nextlogger;

    public function __construct($level)
        $this->level = $level;
    

    public function setNextLogger($next_logger)
        $this->nextlogger = $next_logger;
    

    public function logMessage($level,$message)
        if($this->level == $level)
            $this->write($message);
        

        if($this->nextlogger)
            $this->nextlogger->logMessage($level,$message);
        
    

    abstract function write($message);


class DebuggLogger extends AbstractLog
    public function write($message)
        echo "Debug info: $message \n";
    


class WarningLogger extends AbstractLog
    public function write($message)
        echo "Warning info: $message \n";
    


class ErrorLogger extends AbstractLog
    public function write($message)
        echo "Error info: $message \n";
    


function getChainOfLoggers()
    $warning = new WarningLogger(WARNING_LEVEL);
    $debugg = new DebuggLogger(DEBUG_LEVEL);
    $error = new ErrorLogger(ERROR_LEVEL);

    $warning->setNextLogger($debugg);
    $debugg->setNextLogger($error);

    return $warning;


$chain = getChainOfLoggers();

$chain->logMessage(WARNING_LEVEL,"这是一条警告");
$chain->logMessage(DEBUG_LEVEL,"这是一条Debug");
$chain->logMessage(ERROR_LEVEL,"这是一条致命错误");

输出

Warning info: 这是一条警告
Debug info: 这是一条Debug
Error info: 这是一条致命错误

 

以上是关于php设计模式责任链模式的主要内容,如果未能解决你的问题,请参考以下文章

责任链模式和php实现

php设计模式之责任链模式实现举报功能实例代码

php设计模式责任链模式

php设计模式之责任链模式

责任链模式

责任链模式