Home >Backend Development >PHP Tutorial >Code examples of PHP observer pattern

Code examples of PHP observer pattern

黄舟
黄舟Original
2017-03-16 09:03:401323browse

PHPObserver patternCode example

<?php
// 观察者模式

/**
 * abstract subject
 */
interface Subject
{
	/**
	 * add Observer
	 */
	public function attach(Observer $obs);
	
	/**
	 * remove Observer
	 */
	public function detach(Observer $obs);
	
	/**
	 * notify Observer
	 */
	public function notify();
}

interface Observer
{
	public function update(Subject $sub);
}

/**
 * concrete subject
 */
class ConcreteSubject implements Subject
{
	private $observerList = array();
	
	public function attach(Observer $obs) {
		$this->observerList[] = $obs;
	}
	
	public function detach(Observer $obs) {
		$this->observerList = array_diff($this->observerList, [$obs]);
	}
	
	public function notify() {
		foreach($this->observerList as $ol) {
			$ol->update($this);
		}
	}
	
	public function doAct() {
		echo &#39;DoAct ... <br/>&#39;;
		$this->notify();
	}
}

/**
 * concrete observer 1
 */
class Observer1 implements Observer
{
	public function update(Subject $sub) {
		echo &#39;Observer one updated! <br/>&#39;;
	}
}

/**
 * concrete observer 2
 */
class Observer2 implements Observer
{
	public function update(Subject $sub) {
		echo &#39;Observer two updated! <br/>&#39;;
	}
}

// test code
$sub = new ConcreteSubject();

$sub->attach(new Observer1()); //add observer
$sub->attach(new Observer1());
$sub->attach(new Observer2());

$sub->doAct();

The above is the detailed content of Code examples of PHP observer pattern. For more information, please follow other related articles on the PHP Chinese website!

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