av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

常用設(shè)計(jì)模式之迭代器模式及其PHP實(shí)現(xiàn)(Yii框架)

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

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

適用性在希望利用語(yǔ)言本身的遍歷函數(shù)便利自定義結(jié)構(gòu)時(shí),例如PHP中的foreach函數(shù)類圖

常用設(shè)計(jì)模式之迭代器模式及其PHP實(shí)現(xiàn)(Yii框架)

PHP實(shí)例

<?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框架中的實(shí)現(xiàn):

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

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

這與之前的簡(jiǎn)單實(shí)現(xiàn)相比,其位置的變化是通過控制key來(lái)實(shí)現(xiàn)的,這種實(shí)現(xiàn)的作用是為了避免false作為數(shù)組值時(shí)無(wú)法迭代。

標(biāo)簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 日本一区二区视频 | www.com久久久 | 97伦理 | 久久av一区二区三区 | 久久免费视频观看 | 中文字幕91 | 理论片87福利理论电影 | www.一区二区三区 | 欧美aⅴ| 国产区在线看 | 国产91在线观看 | 国产一区二区三区高清 | 亚洲日本三级 | 红色av社区| 九九久久这里只有精品 | 中文字幕av中文字幕 | 午夜精品一区 | 久久欧美高清二区三区 | 99精品久久久久久 | 在线播放国产一区二区三区 | 91免费电影 | 色婷婷精品国产一区二区三区 | 91成人免费观看 | 国产成人免费视频网站高清观看视频 | 男女性毛片 | 欧美日日 | 亚洲自拍偷拍av | 99精品久久| 国产精品视频999 | 99九九视频| 四虎在线观看 | 羞羞视频在线观看 | 一道本不卡视频 | 久久毛片| 国产婷婷在线视频 | 亚洲欧美日本在线 | 成人免费黄色片 | 亚洲欧美日本在线 | 黄色成人亚洲 | 中文字幕11页 | 国产精品免费一区二区三区 |