The iterator pattern of design patterns in PHP

Source: Internet
Author: User
 Myiterator = $iterator; $this->position = 0;}    Gets the current function currently () {return $this->myiterator[$this->position]; }//next indexfunction Next () {+ + $this->position;} Get key (subscript) function key () {return $this->position;} function value () {return $this->myiterator[$this->position];}    Re-traverse Function rewind () {$this->position = 0; }function valid () {return isset ($this->myiterator[$this->position]);}} application/* $aData = Array (' A ', ' B ', ' C '); $myiterator = new Myiterator ($aData); while ($myiterator->valid ()) {$myiterator->next ();} *///(2) build its own container interface container {public function getiterator ();} Class MyContainer implements Container{private $iterator;p ublic function __construct ($data) {$this->iterator = new Myiterator ($data);} Public Function Getiterator () {return $this->iterator;}} application Example $data = Array (' A ', ' B ', ' C '), $myContainer = new MyContainer ($data);//Get iterator $myiterator = $myContainer->getitera Tor (); while ($myiterator->valid () {Var_dump ($myiterator->current ()); $myiterator->next ();}
  • 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.