This article describes the iterator mode for getting started with PHP design pattern. Share it for your reference, as follows:
Before we dig into this design pattern, let’s take a look at an interview question, from Bird Brother’s blog.
The title is as follows:
Make objects foreach loops like arrays, requiring properties to be private.
It is difficult to implement without using the iterator mode. Let’s look at the implemented code first:
<?php class Sample implements Iterator{ private $_arr; public function __construct(Array $arr){ $this->_arr = $arr; } public function current(){ return current($this->_arr); } public function next(){ return next($this->_arr); } public function key(){ return key($this->_arr); } public function valid(){ return $this->current() !== false; } public function rewind(){ reset($this->_arr); } }
<?php require ''; $arr = new Sample(['max', 'ben', 'will']); foreach ($arr as $k=>$v){ echo $k."-".$v."<br />"; }
The Iterator interface comes from the php's spl class library. After writing related articles on the design pattern, we will further study this class library.
In addition, I found a piece of implementation code for the iterator pattern in the Yii framework online:
class CMapIterator implements Iterator { /** * @var array the data to be iterated through */ private $_d; /** * @var array list of keys in the map */ private $_keys; /** * @var mixed current key */ private $_key; /** * Constructor. * @param array the data to be iterated through */ public function __construct(&$data) { $this->_d=&$data; $this->_keys=array_keys($data); } /** * Rewinds internal array pointer. * This method is required by the interface Iterator. */ public function rewind() { $this->_key=reset($this->_keys); } /** * Returns the key of the current array element. * This method is required by the interface Iterator. * @return mixed the key of the current array element */ public function key() { return $this->_key; } /** * Returns the current array element. * This method is required by the interface Iterator. * @return mixed the current array element */ public function current() { return $this->_d[$this->_key]; } /** * Moves the internal pointer to the next array element. * This method is required by the interface Iterator. */ public function next() { $this->_key=next($this->_keys); } /** * Returns whether there is an element at current position. * This method is required by the interface Iterator. * @return boolean */ public function valid() { return $this->_key!==false; } } $data = array('s1' => 11, 's2' => 22, 's3' => 33); $it = new CMapIterator($data); foreach ($it as $row) { echo $row, '<br />'; }
The official definition of the iterator design pattern is: using the iterator pattern to provide unified access to the aggregated object, that is, providing an external iterator to access and traverse the aggregated object without exposing the internal structure of the object. Also known as the Cursor mode.
OK, I don't understand very much. Why can arrays be traversed with foreach and still need to be implemented using such an iterator pattern? You can only wait for the deepening of work experience to further understand.
Reference documentation:
https:///article/
https:///article/
https:///article/
For more information about PHP related content, please check out the topic of this site:PHP object-oriented programming tutorial》、《Complete collection of PHP array (Array) operation techniques》、《Introduction to PHP basic syntax》、《Summary of PHP operations and operator usage》、《Summary of usage of php strings》、《PHP+mysql database operation tutorial"and"Summary of common database operation techniques for php》
I hope this article will be helpful to everyone's PHP programming.