Design Patterns in PHP--viewer Mode _php Tutorial

Source: Internet
Author: User

Design Patterns in PHP--viewer mode


 Observers[] = $observer;} Delete Viewer (person looking at flower) Public Function detach (Observer $observer) {if (In_array ($observer, $this->observers)) {$index = Array_    Search ($observer, $this->observers);            unset ($this->observers[$index]); return TRUE;} return false; }//notifies the Observer that public function notify () {foreach ($this->observers as $observer) {$observer->dosometing ()}}} Specific Person class Loveflowerperson implements observer{private $name; function __construct ($sName) {$this->name = $sName ; } public Function dosometing () {echo $this->name. ' Watering flowers ';}} /* Add the First watcher flower */$subject = new Flower (), $observer 1 = new Loveflowerperson (' WLT '); $subject->attach ($observer 1);
/* Add a second observer florist */
$observer 2 = new Loveflowerperson (' WLB '); $subject->attach ($observer 2); $subject->notify (); Theme changes, notify Observer Echo ' Delete a florist
'; $subject->detach ($observer 2); $subject->notify (); Subject change, notifying the Observer

http://www.bkjia.com/PHPjc/962643.html www.bkjia.com true http://www.bkjia.com/PHPjc/962643.html techarticle design Pattern in PHP--viewer mode observers[] = $observer;} Delete Viewer (person looking at flowers) public Function detach (Observer $observer) {if (In_array ($observer, $this->observ ...

  • 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.