溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP中迭代器怎么實(shí)現(xiàn)

發(fā)布時間:2021-06-03 14:18:00 來源:億速云 閱讀:112 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)PHP中迭代器怎么實(shí)現(xiàn)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

本文實(shí)例講述了PHP迭代器和迭代的實(shí)現(xiàn)與使用方法。分享給大家供大家參考,具體如下:

PHP的面向?qū)ο笠嫣峁┝艘粋€非常聰明的特性,就是,可以使用foreach()方法通過循環(huán)方式取出一個對象的所有屬性,就像數(shù)組方式一樣,代碼如下:

class Myclass{
  public $a = 'php';
  public $b = 'onethink';
  public $c = 'thinkphp';
}
$myclass = new Myclass();
//用foreach()將對象的屬性循環(huán)出來
foreach($myclass as $key.'=>'.$val){
  echo '$'.$key.' = '.$val."<br/>";
}
/*返回
  $a = php
  $b = onethink
  $c = thinkphp
*/

如果需要實(shí)現(xiàn)更加復(fù)雜的行為,可以通過一個iterator(迭代器)來實(shí)現(xiàn)

//迭代器接口
interface MyIterator{
  //函數(shù)將內(nèi)部指針設(shè)置回?cái)?shù)據(jù)開始處
  function rewind();
  //函數(shù)將判斷數(shù)據(jù)指針的當(dāng)前位置是否還存在更多數(shù)據(jù)
  function valid();
  //函數(shù)將返回?cái)?shù)據(jù)指針的值
  function key();
  //函數(shù)將返回將返回當(dāng)前數(shù)據(jù)指針的值
  function value();
  //函數(shù)在數(shù)據(jù)中移動數(shù)據(jù)指針的位置
  function next();
}
//迭代器類
class ObjectIterator implements MyIterator{
  private $obj;//對象
  private $count;//數(shù)據(jù)元素的數(shù)量
  private $current;//當(dāng)前指針
  function __construct($obj){
    $this->obj = $obj;
    $this->count = count($this->obj->data);
  }
  function rewind(){
    $this->current = 0;
  }
  function valid(){
    return $this->current < $this->count;
  }
  function key(){
    return $this->current;
  }
  function value(){
    return $this->obj->data[$this->current];
  }
  function next(){
    $this->current++;
  }
}
interface MyAggregate{
  //獲取迭代器
  function getIterator();
}
class MyObject implements MyAggregate{
  public $data = array();
  function __construct($in){
    $this->data = $in;
  }
  function getIterator(){
    return new ObjectIterator($this);
  }
}
//迭代器的用法
$arr = array(2,4,6,8,10);
$myobject = new MyObject($arr);
$myiterator = $myobject->getIterator();
for($myiterator->rewind();$myiterator->valid();$myiterator->next()){
  $key = $myiterator->key();
  $value = $myiterator->value();
  echo $key.'=>'.$value;
  echo "<br/>";
}
/*返回
  0=>2
  1=>4
  2=>6
  3=>8
  4=>10
*/

感謝各位的閱讀!關(guān)于“PHP中迭代器怎么實(shí)現(xiàn)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI