色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

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

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

瀏覽:4日期: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
相關文章:
主站蜘蛛池模板: 91精品国产美女福到在线不卡 | 亚洲国产成人va在线观看网址 | 人与拘一级a毛片 | 欧美亚洲在线视频 | 成人午夜两性视频免费看 | 久爱www免费人成福利播放 | 看免费人成va视频全 | 在线国产三级 | 国产97在线观看 | 在线国产毛片 | 日本一级特黄在线播放 | 黄色一及毛片 | 欧美午夜激情影院 | 老外黑人欧美一级毛片 | 九九精品免视频国产成人 | 欧美成本人视频 | 日日碰碰 | 精品一久久香蕉国产线看观 | 国产乱理片在线观看夜 | 国产农村乱子伦精品视频 | 国产日韩欧美三级 | a级性生活视频 | 国产v片成人影院在线观看 国产v片在线播放免费观 | 暖暖日本在线播放 | 欧美激情亚洲色图 | 国产精品一区二区国产 | 成 人 黄 色 免费网 | 日本三级香港三级妇三 | 久久er热这里只有精品23 | 美女把张开腿男生猛戳免费视频 | 国产免费福利体检区久久 | 99视频在线播放 | 久久国产99 | 国产精品欧美一区二区在线看 | 91黑丝国产线观看免费 | 午夜影院福利社 | 亚欧免费视频 | 欧美亚洲国产激情一区二区 | 成人免费公开视频 | 成年网站在线在免费播放 | 国产ssss在线观看极品 |