3

如何使用 __get() 在访问下面这样的案例的多级对象属性中返回 null?

例如,这是我的课,

class property 
{

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


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 = array(
    "category"  => "admin",
    "person"    => "unique",
    "a"         => array(
        "aa" => "xx",
        "bb"=> "yy"
    ),
    "passcode"  => false
);


$type = $object->array_to_object($type,true);
var_dump($type->a->cc);

结果,

null

但是当输入数组为 NULL 时,我收到一条错误消息null

$type = null;
$type = $object->array_to_object($type,true);
var_dump($type->a->cc);

结果,

Notice: Trying to get property of non-object in C:\wamp\www\test...p on line 68
NULL

在这种情况下可以返回 NULL 吗?

4

3 回答 3

1

是的,但解释如何并不是那么简单。首先了解您遇到该问题的原因:

$value = $a->b->c;

这将首先返回NULL. $a->b所以实际上你写道:

$value = NULL->c;

因此,NULL您需要返回一个与NULLNULLObect的基类类似并表示NULL.

正如您可以想象的那样,您无法NULL在 PHP 中使用它进行真正的模拟,而且 PHP 的语言功能太有限,无法无缝地实现这一点。

但是,您可以尝试接近NULLObect我所描述的。

class property 
{

    public function __get($name)
    {
        isset($this->$name) || $this->$name = new NULLObject();
        return  $this->$name;
    }
}


class NULLObject extends Property {};

请注意,这可能不是您要查找的内容。如果它不符合您的需要,很可能PHP 是您用于编程的错误语言。使用一些比 PHP 具有更好的成员覆盖特性的语言。

相关问题:

于 2012-05-05T13:22:36.520 回答
0

您可以返回新属性而不是 null

 public function __get($name)
    {
        return (isset($this->$name)) ? $this->$name : new property();
    }
于 2012-05-05T13:26:39.060 回答
0

是的,我知道已经是 4 年前了,但本周我遇到了类似的问题,在我试图解决它时,我发现了这个线程。所以,这是我的解决方案:

class NoneWrapper
{
    private $data;

    public function __construct($object)
    {
        $this->data = $object;
    }

    public function __get(string $name)
    {
        return property_exists($this->data, $name)
            ? new NoneWrapper($this->data->$name)
            : new None;
    }

    public function __call($name, $arguments)
    {
        if (is_object($this->data)) {
            return (property_exists($this->data, $name))
            ? $this->data->$name
            : null;
        } else {
            return null;
        }
    }

    public function __invoke()
    {
        return $this->data;
    }
}

class None
{
    public function __get(string $name) {
        return new None;
    }

    public function __call($name, $arguments)
    {
        return null;
    }

    public function __invoke()
    {
        return null;      
    }
}

$object = new NoneWrapper(
    json_decode(
        json_encode([
            'foo' => [
                'bar' => [
                    'first' => 1,
                    'second' => 2,
                    'third' => 3,
                    'fourth' => 4,
                ],
            ]
        ])
    )
);

var_dump($object->foo->bar->baz()); // null
var_dump($object->foo->bar->third()); // 3
于 2016-05-29T13:53:00.193 回答