亚洲免费在线视频-亚洲啊v-久久免费精品视频-国产精品va-看片地址-成人在线视频网

您的位置:首頁技術文章
文章詳情頁

常用設計模式之迭代器模式及其PHP實現(Yii框架)

瀏覽:3日期:2022-09-13 09:01:45

迭代器模式是一種行為型模式,它是一種最簡單也最常見的設計模式。它可以讓使用者透過特定的接口巡訪容器中的每一個元素而不用了解底層的實際操作。

適用性在希望利用語言本身的遍歷函數便利自定義結構時,例如PHP中的foreach函數類圖

常用設計模式之迭代器模式及其PHP實現(Yii框架)

PHP實例

<?phpclass sample implements Iterator { private $_items ; public function __construct(&$data) {$this->_items = $data; } public function current() {return current($this->_items); } public function next() {next($this->_items); } public function key() {return key($this->_items); } public function rewind() {reset($this->_items); } public function valid() { return ($this->current() !== FALSE); }} // client$data = array(1, 2, 3, 4, 5);$sa = new sample($data);foreach ($sa AS $key => $row) { echo $key, ’ ’, $row, ’<br />’;}?>在Yii框架中的實現:

在Yii框架中的我們可以看到其迭代器的實現,在collections目錄下的CMapIterator.php文件中,其實現如下:

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 />’;}

這與之前的簡單實現相比,其位置的變化是通過控制key來實現的,這種實現的作用是為了避免false作為數組值時無法迭代。

標簽: PHP
相關文章:
主站蜘蛛池模板: 亚洲精品无码不卡在线播放he | 国产步兵社区视频在线观看 | 性色a v 一区| 91chinesevideo在线观看 | 免费看日韩欧美一级毛片 | 国产精品李雅在线观看 | 美女舒服好紧太爽了视频 | 亚洲美女在线视频 | 久久精品中文字幕首页 | 日本视频一区二区三区 | 国模偷拍在线观看免费视频 | 欧美最刺激好看的一级毛片 | 欧美一区二区三区四区在线观看 | 男女精品视频 | 日韩美女网站在线看 | 高清大学生毛片一级 | 亚洲国产精 | 国产日产久久高清欧美一区 | 一级做a爱片久久蜜桃 | 亚洲国产精品久久人人爱 | 绝对真实偷拍盗摄高清在线视频 | 九九热播视频 | 久久99视频免费 | 97精品国产高清在线看入口 | 国产精品一在线观看 | 国产日韩精品欧美一区喷 | 99精品视频在线 | 91精品国产高清久久久久 | 欧美高清一级毛片免费视 | 国产成人18黄网站免费网站 | 欧美一区二区三区在线视频 | ririai99在线视频观看 | 福利片免费一区二区三区 | 国产91免费 | 国产中文在线视频 | 国产欧美精品区一区二区三区 | 欧美三级不卡视频 | 欧美精品久久久亚洲 | 日韩三级在线观看 | 色欧美与xxxxx | 欧美精品网站 |