成人视屏在线观看-国产99精品-国产精品1区2区-欧美一级在线观看-国产一区二区日韩-色九九九

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

常用設計模式之迭代器模式及其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
相關文章:
主站蜘蛛池模板: 日韩精品特黄毛片免费看 | 国产三级三级三级三级 | 久久久久久久久国产 | fc2成年手机免费共享视频 | 亚洲天堂在线视频观看 | 全国男人的天堂天堂网 | 台湾三级 | 97视频在线免费 | 精品毛片 | 国产一级片观看 | 亚洲第一免费网站 | 欧美一级毛片特黄黄 | 中国三级毛片 | 久久精品无遮挡一级毛片 | 亚洲理论在线观看 | 国产亚洲精品午夜一区 | 久久成人性色生活片 | 特黄特黄一级高清免费大片 | 免费一级特黄欧美大片久久网 | selaoban在线视频免费精品 | 欧美一级特黄特黄毛片 | 免费成人| 国产精品11p | 国产91精品一区二区麻豆亚洲 | 久久精品6| 2022日韩理论片在线观看 | 成人做爰网站免费看 | 亚洲精品久久久久久久久久久网站 | 日本手机在线视频 | 久久福利青草精品免费 | 中文在线视频观看 | 国产91免费在线 | 亚洲超大尺度激情啪啪人体 | 欧美—级v免费大片 | 亚洲天天在线 | 一本久久道 | 国产一级强片在线观看 | 国产精品久久久久精 | 成人网18免费网站在线 | 国产欧美一区二区精品久久久 | 天天视频一区二区三区 |