導航:首頁 > 編程語言 > php如何遍歷對象

php如何遍歷對象

發布時間:2023-03-09 11:44:57

php中如何用for循環遍歷數組中的元素只是想用for循環哦

echo
get_all($arr);
function
get_all($arr){
$count
=
count($arr);
for($i=0;$i<$count;$i++){
if(is_array($arr[$i])){//判斷是否為數組
get_all($arr[$i]);
}else{
echo
$arr[$i];
}
}
}
這種的通常都用遞歸迭代出來,僅供參考,希望能幫到你~

Ⅱ php foreach只能遍歷數組么

foreach肯定可以遍歷數組,但是有一些非數組的對象,有數組的特點也能通過foreach遍歷出來

Ⅲ 在PHP中遍歷對象用什麼

其實網路一下就知道

我們知道,php中,foreach可以很方便地對可迭代結構(例如數組,再如對象)進行迭代操作:

[php] view plain
foreach( $array as $elem){
var_mp($elem);
}
[php] view plain
foreach($obj as $key=>$value){
echo "$key=>$value".PHP_EOL;
}

因而我們想:如果對於一個實例化對象,對其進行foreach操作,會發生什麼事情呢?

首先我們定義的基礎類為:

[php] view plain
Class Test{
/* one public variable */
public $a;

public $b;

/* one private variable */
private $c;

public function __construct(){
$this->a = "public";
$this->b = "public";
$this->c = "private";
}

public function traverseInside(){
foreach($this as $key=>$value){
echo $key."=>".$value.EOL;
}
}
}
然後我們實例化該類,對其進行迭代,並與內部迭代的結果進行比較:

[php] view plain
$test = new Test;
echo "<hr>";
echo "traverse outside:".EOL;
foreach( $test as $key=>$value ){
echo $key."=>".$value.EOL;
}
echo "<hr>";
echo "traverse inside:".EOL;
$test->traverseInside();
迭代的結果為:

可以看出:外部foreach循環的結果,只是將對象的公有屬性(public)循環出來了,而對於私有屬性(private),外部foreach是無法循環出來的。因而我們如果想要在外部通過foreach循環出類的所有的屬性(公有的和私有的),僅僅依靠foreach是不行的,必須要對類進行「改造」。如何對類進行改造呢?如果你了解foreach的實現(參考laruence的博客:http://www.laruence.com/2008/11/20/630.html),那麼可以很輕松地找到相應的方案。另外一方面,《設計模式-可復用面向對象軟體設計的基礎》中也提到:通過將對象的訪問和遍歷從對象中分離出來並放入一個迭代器對象中,迭代器模式可以實現以不同的方式對對象進行遍歷。我們暫時不去深挖這句話的意思,只要知道,使用迭代器可以對對象進行遍歷即可。

PHP手冊<預定義介面>部分指出:要實現迭代器模式,需要在可迭代對象中實現如下介面:

[php] view plain
abstractpublicmixedcurrent( void )

abstractpublicscalarkey( void )

abstractpublicvoidnext( void )

abstractpublicvoidrewind( void )

abstractpublicbooleanvalid( void )
有了這個。實現迭代器模式就很方便了,一個簡單的實例如下:

[php] view plain
class TestIterator implements Iterator {
private $point = 0;

private $data = array(
"one","two","three",
);

public function __construct() {
$this->point = 0;
}

function rewind() {
$this->point = 0;
}

function current() {
return $this->data[$this->point];
}

function key() {
return $this->point;
}

function next() {
++$this->point;
}

function valid() {
return isset($this->data[$this->point]);
}
}

$it = new TestIterator;

foreach($it as $key => $value) {
echo $key, $value;
echo "\n";
}

當然,使用了迭代器的對象可以以如下方式進行遍歷:

[php] view plain
$it = new TestIterator;
$it->rewind();

while ($it->valid()){
$key = $it->key();
$value = $it->current();
echo "$key=>$value";
$it->next();
}
最後附上YII中ListIterator(顧名思義,實現對List的迭代操作的迭代器)的實現:

[php] view plain
<?php
/**
* CListIterator class file.
*
* @author Qiang Xue <[email protected]>
* @link http://www.yiiframework.com/
* @right Copyright © 2008-2011 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/

/**
* CListIterator implements an interator for {@link CList}.
*
* It allows CList to return a new iterator for traversing the items in the list.
*
* @author Qiang Xue <[email protected]>
* @version $Id$
* @package system.collections
* @since 1.0
*/
class CListIterator implements Iterator
{
/**
* @var array the data to be iterated through
*/
private $_d;
/**
* @var integer index of the current item
*/
private $_i;
/**
* @var integer count of the data items
*/
private $_c;

/**
* Constructor.
* @param array $data the data to be iterated through
*/
public function __construct(&$data)
{
$this->_d=&$data;
$this->_i=0;
$this->_c=count($this->_d);
}

/**
* Rewinds internal array pointer.
* This method is required by the interface Iterator.
*/
public function rewind()
{
$this->_i=0;
}

/**
* Returns the key of the current array item.
* This method is required by the interface Iterator.
* @return integer the key of the current array item
*/
public function key()
{
return $this->_i;
}

/**
* Returns the current array item.
* This method is required by the interface Iterator.
* @return mixed the current array item
*/
public function current()
{
return $this->_d[$this->_i];
}

/**
* Moves the internal pointer to the next array item.
* This method is required by the interface Iterator.
*/
public function next()
{
$this->_i++;
}

/**
* Returns whether there is an item at current position.
* This method is required by the interface Iterator.
* @return boolean
*/
public function valid()
{
return $this->_i<$this->_c;
}
}

Ⅳ php中foreach($row as $key=>$val){}函數怎麼理解,特別是$key=>$val

foreach 可以遍歷數組與對象,它會把當前單元的鍵名也會在每次循環中被賦給變數 $key,值賦給變數$val,例如
$row=array('one'=>1,'two'=>2);
foreach($row as $key=>$val){
echo $key.'--'.$val;

}
第一次遍歷的$key是one,$val是1;
第二次遍歷的$key是two,$val是2;

Ⅳ php里的private值調用不到。類 遍歷對象,如何取值pathName

取不到不是很正常嗎,如果能取到那private的聲明不就沒意義了。
SplFileInfo應該提供getPathName之類的public方法來獲取private $pathName的值。例如
public function getPathName() {
return $this->pathName;

}

閱讀全文

與php如何遍歷對象相關的資料

熱點內容
華三交換機保存命令 瀏覽:597
命令方塊怎麼調鍵盤 瀏覽:841
不把密碼存在伺服器上怎麼辦 瀏覽:398
怎麼讓指令方塊的命令消失 瀏覽:543
用單片機做plc 瀏覽:404
雲伺服器進入子目錄命令 瀏覽:795
伺服器機櫃如何配電 瀏覽:578
怎麼刪除iphone資源庫里的app 瀏覽:940
pdf魚 瀏覽:648
單片機pcf8591什麼作用 瀏覽:805
sql命令學院 瀏覽:283
加密軟體在電腦那個盤 瀏覽:988
android獲取外部存儲 瀏覽:573
怎麼查自己家的伺服器地址 瀏覽:858
編程c語言工作好不好 瀏覽:569
單片機焊接地怎麼連接 瀏覽:694
游戲源碼怎麼抓 瀏覽:216
程序員幫大家引走怪物 瀏覽:16
手機網頁小游戲源碼 瀏覽:513
戰地一伺服器怎麼設置管理員 瀏覽:396