如何在对象中找到最后一个链属性?

时间:2012-05-06 16:37:49

标签: php oop multidimensional-array null php-5.3

为避免收到此previous question中的错误消息,我决定使用__get()更改类,如下所示

class property 
{

    public function __get($name)
    {
        return isset($this->$name) ? $this->$name : new property;
    }
}



class objectify
{

    public function array_to_object($array = array(), $property_overloading = false)
    {
        # if $array is not an array, let's make it array with one value of former $array.
        if (!is_array($array)) $array = array($array);

        # Use property overloading to handle inaccessible properties, if overloading is set to be true.
        # Else use std object.
        if($property_overloading === true) $object = new property();
            else $object = new stdClass();

        foreach($array as $key => $value)
        {
            $key = (string) $key ;
            $object->$key = is_array($value) ? self::array_to_object($value, $property_overloading) : $value;
        }


        return $object;

    }
}

$object = new objectify();
$type = null;
$type = $object->array_to_object($type,true);
var_dump($type->a->b->c);

所以我最终得到了这个结果,

object(property)#3 (0) { }

但它仍然不完美。据我所知,上述解决方案以的方式处理对象,

$type = object{}->object{}->object{}

所以我想知道我是否可以找到它是最后一个链并且它是空的然后只输出一个null

$type = object{}->object{}->NULL

是否可以使用PHP?

修改

我想到了一个想法,即计算属性类被实例化的次数,

class property 
{
    public static $counter = 0;

    function __construct() {
        self::$counter++;
    }

    public function __get($name)
    {
        if(isset($this->$name))
        {   
            return $this->$name;
        }
        elseif(property::$counter < 3)
        {
            return new property;
        }
        else
        {
            return null;
        }

    }
}

但我唯一的问题是如何使数字3动态化。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

听起来你正在寻找一个PHP版本的Groovy ?.运算符:http://groovy.codehaus.org/Null+Object+Pattern

Afaik,你不能在PHP中重载或创建一个新的运算符。您也许可以通过将所有嵌套调用传递给函数来模拟它,并且函数知道何时返回null。

修改:此处发布的其他选项 - http://justafewlines.com/2009/10/groovys-operator-in-php-sort-of/