Observer Mode, observer mode class fig _ PHP Tutorial

Source: Internet
Author: User
The Observer pattern class graph. Observer Mode: graph-like observer mode? Php defines the observer call interface classtransfer {protected $ _ observersarray (); registers the object publicfunctionregis observer mode, observer mode class diagram

Observer Mode

 _ Observers [] = $ sub;} // calls public function trigger () {if (! Empty ($ this-> _ observers) {foreach ($ this-> _ observers as $ observer) {$ observer-> update ();}}}} // Observer interface obserable {public function update () ;}// implements observer class listen implements obserable {public function update () {echo 'Now first time you need to do listen
';}} Class read implements obserable {public function update () {echo 'Now first time you need to read
';}} Class speak implements obserable {public function update () {echo 'Now first time you need to speak
';}} Class write implements obserable {public function update () {echo 'Now first time you need to write
';}}$ Transfer = new transfer (); $ transfer-> register (new listen (); $ transfer-> register (new read ()); $ transfer-> register (new speak (); $ transfer-> register (new write (); $ transfer-> trigger ();

Observer Mode? Php // defines the observer call interface class transfer {protected $ _ observers = array (); // registers the object public function regis...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.