Php design pattern: Observer pattern

Source: Internet
Author: User
This article provides a detailed analysis of the observer mode in php. For more information, see Observer Mode:Defines a one-to-many dependency between objects. when the status of an object changes, all objects dependent on it are notified and automatically updated.
Observer class:
1. abstract topic role: the topic role stores all references to the Observer object in a collection. each topic can have any number of observers. Abstract topics provide interfaces for adding and deleting observer objects.
2. abstract observer role: defines an interface for all specific observers and updates themselves when the observed topic changes.
3. specific topic role: stores the relevant status to a specific observer object. when the internal status of a specific topic changes, a notification is sent to all registered observers. A topic role is usually implemented by a specific subclass.
4. a specific observer role: stores a specific topic object, stores relevant states, and implements the update interface required by the abstract observer role to ensure its own state is consistent with that of the topic.
Purpose:
1. the observer mode has a low coupling degree.
2. support for broadcast communication
The code is as follows:
// Abstract topic
Interface Subject {
Public function attach ($ observer );
Public function detach ($ observer );
Public function yyobservers ();
}
// Specific topic
Class ConcreateSubject implements Subject {
Private $ _ observers;
Public function _ construct (){
$ This-> _ observers = array ();
}

Public function attach ($ observer ){
Return array_push ($ this-> _ observers, $ observer );
}

Public function detach ($ observer ){
$ Index = array_search ($ observer, $ this-> _ observers );
If ($ index = false |! Array_key_exists ($ index, $ this-> _ observers )){
Return false;
}
Unset ($ this-> _ observer [$ index]);
Return true;
}

Public function policyobservers (){
If (! Is_array ($ this-> _ observers )){
Return false;
}
Foreach ($ this-> _ observers as $ observer ){
$ Observer-> update ();
}
Return true;
}
}

// Abstract Observer
Interface Observer {
Public function update ();
}
// Specific Observer
Class ConcreteObserver implement Observer {
Private $ _ name;
Public function _ construct ($ name ){
$ This-> _ name = $ name;
}

Public function update (){
Echo 'observer', $ this-> _ name. 'has notified
';
}
}

// Client
Class Client {
Public static function main (){
$ Subject = new ConcreteSubject ();
// Add the first observer
$ Observer1 = new ConcreteObserver ('Martin ');
$ Subject-> attach ($ observer1 );
// Notification
$ Subject-> policyobservers ();

// Adds the second observer.
$ Observer2 = new ConcreteObserver ('jaky ');
$ Subject-> attach ($ observer2 );
// Notification
$ Subject-> policyobservers ();

// Delete observer 1
$ Subject-> deatch ($ observer1 );
// Notification
$ Subject-> policyobservers ();
}
}

Client: main ();
?>

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.