php遍历对象的方法

admin3年前PHP教程62

对于php来说,foreach是非常方便好用的一个语法,几乎对于每一个PHPer它都是日常接触最多的请求之一。那么对象是否能通过foreach来遍历呢?

答案是肯定的,但是有个条件,那就是对象的遍历只能获得它的公共属性。


// 普通遍历
class A
{
    public $a1 = '1';
    public $a2 = '2';
    public $a3 = '3';
 
    private $a4 = '4';
    protected $a5 = '5';
 
    public $a6 = '6';
 
    public function test()
    {
        echo 'test';
    }
}
$a = new A();
foreach ($a as $k => $v) {
    echo $k, '===', $v, PHP_EOL;
}
 
// a1===1
// a2===2
// a3===3
// a6===6

不管是方法还是受保护或者私有的变量,都无法遍历出来。只有公共的属性才能被遍历出来。其实,我们之前在讲设计模式时讲过的迭代器模式就是专门用来进行对象遍历的,而且PHP已经为我们准备好了相关的接口,我们只需要去实现这个接口就可以完成迭代器模式的创建了。具体的内容可以参考之前的设计模式系列文章:PHP设计模式之迭代器模式


// 实现迭代器接口
class B implements Iterator
{
    private $var = [];
 
    public function __construct($array)
    {
        if (is_array($array)) {
            $this->var = $array;
        }
    }
 
    public function rewind()
    {
        echo "rewinding\n";
        reset($this->var);
    }
 
    public function current()
    {
        $var = current($this->var);
        echo "current: $var\n";
        return $var;
    }
 
    public function key()
    {
        $var = key($this->var);
        echo "key: $var\n";
        return $var;
    }
 
    public function next()
    {
        $var = next($this->var);
        echo "next: $var\n";
        return $var;
    }
 
    public function valid()
    {
        $var = $this->current() !== false;
        echo "valid: {$var}\n";
        return $var;
    }
}
 
$b = new B([1, 2, 3, 4]);
 
foreach ($b as $k => $v) {
    echo $k, '===', $v, PHP_EOL;
}
 
// rewinding
// current: 1
// valid: 1
// current: 1
// key: 0
// 0===1
// next: 2
// current: 2
// valid: 1
// current: 2
// key: 1
// 1===2
// next: 3
// current: 3
// valid: 1
// current: 3
// key: 2
// 2===3
// next: 4
// current: 4
// valid: 1
// current: 4
// key: 3
// 3===4
// next:
// current:
// valid:

假如今天的文章只是讲之前讲过的迭代器模式,那就太没意思了,所以,咱们还要来学习一个更有意思的应用。那就是让对象可以像数组一样进行操作。这个其实也是使用PHP早已为我们准备好的一个接口:ArrayAccess。


// 让类可以像数组一样操作
class C implements ArrayAccess, IteratorAggregate
{
    private $container = [];
    public function __construct()
    {
        $this->container = [
            "one" => 1,
            "two" => 2,
            "three" => 3,
        ];
    }
    public function offsetSet($offset, $value)
    {
        if (is_null($offset)) {
            $this->container[] = $value;
        } else {
            $this->container[$offset] = $value;
        }
    }
    public function offsetExists($offset)
    {
        return isset($this->container[$offset]);
    }
    public function offsetUnset($offset)
    {
        unset($this->container[$offset]);
    }
    public function offsetGet($offset)
    {
        return isset($this->container[$offset]) ? $this->container[$offset] : null;
    }
 
    public function getIterator() {
        return new B($this->container);
    }
}
 
$c = new C();
var_dump($c);
 
$c['four'] = 4;
var_dump($c);
 
$c[] = 5;
$c[] = 6;
var_dump($c);
 
foreach($c as $k=>$v){
    echo $k, '===', $v, PHP_EOL;
}
 
// rewinding
// current: 1
// valid: 1
// current: 1
// key: one
// one===1
// next: 2
// current: 2
// valid: 1
// current: 2
// key: two
// two===2
// next: 3
// current: 3
// valid: 1
// current: 3
// key: three
// three===3
// next: 4
// current: 4
// valid: 1
// current: 4
// key: four
// four===4
// next: 5
// current: 5
// valid: 1
// current: 5
// key: 0
// 0===5
// next: 6
// current: 6
// valid: 1
// current: 6
// key: 1
// 1===6
// next:
// current:
// valid:

这个接口需要我们实现四个方法:

offsetSet($offset, $value),根据偏移量设置值offsetExists($offset),根据偏移量确定是否存在内容offsetUnset($offset),根据偏移量删除内容offsetGet($offset),根据依稀量获取内容

这里的偏移量就是我们常说的下标。通过实现这四个方法,我们就可以像操作数组一样的操作对象。当然,日常开发中我们可能并不会很经常的使用包括迭代器在内的这些对象遍历的能力。通常我们会直接去将对象转换成数组 (array) obj 来进行下一步的操作。不过,在java中,特别是JavaBean中会经常在类的内部有一个 List 为自己的对象来表示自身的集合状态。通过对比,我们发现PHP也完全可以实现这样的能力,而且使用迭代器和 ArrayAccess 接口还能够更方便的实现类似的能力。这是非常有用的一种知识扩展,或许下一个项目中你就能运用上这些能力哦!

测试代码: github/zhangyue050…

以上就是php遍历对象的方法的详细内容,更多关于php遍历对象的资料请关注其它相关文章!

免责声明:本文内容来自用户上传并发布,站点仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。请核实广告和内容真实性,谨慎使用。

相关文章

海外多IP服务器的特点有哪些对网站好在哪里

海外多IP服务器的特点有哪些?对网站好在哪里?海外多IP服务器是专门的站群服务器,相比其他的服务器,具有多IP、配置高、速度快等特点,那么用海外多IP服务器做站群究竟对网站有什么好处呢?1、ip资源丰...

高防IP有什么用?租用美国BGP高防物理机配置推荐?

什么是高防IP?IP就像服务器的门牌号,无论是访问还是管理服务器,都要通过IP进行。同理,如果黑客想要对目标服务器进行DDos攻击,也要知道这个目标服务器的IP,并用大量的无效流量数据对目标IP发起请...

台湾大带宽服务器好不好靠什么判断

台湾大带宽服务器好不好靠什么判断?评估台湾大带宽服务器的好坏需要考虑多方面因素,以下是一些主要的判断指标:带宽质量:好的台湾大带宽服务器需要提供高质量、稳定的网络连接,能够满足您的带宽需求。您可以查看...

租用美国站群服务器提升网站优化的优点

美国站群服务器是应对现在搜索引擎算法规则不断地更新和完善,以及网站seo提升要求也越来越严格的情况下的解决方案,客户可以根据实际操作许多网站互相链接从而让美国站群服务器网站超过更好的排名效果。而搭建提...

美国高防服务器租用哪里有

美国高防服务器租用哪里有?租用美国高防服务器需要选择美国高防服务器服务商,那么在选择美国高防服务器服务商时需要考虑哪些方面呢?选择美国高防服务器服务商时需要考虑以下几个方面:1.高防性能:高防服务器的...

PHP解决输出中文乱码问题讲解

解决 php 输出中文乱码的问题问题描述今天给导航狗(daohanggou/)的 php 程序和数据库文件迁移了服务器, 但是迁移到新的服务器上之后 php 输出的中文和 php 输出的从 mysql...