tags:

views:

20

answers:

2

I've got a very weird and unexpected problem.

empty() is returning TRUE on a non-empty property for a reason unknown to me.

class MyObject
{
    private $_property;

    public function __construct($property)
    {
        $this->_property = $property;
    }

    public function __get($name)
    {
        $priv_name = "_{$name}";

        if (isset($this->$priv_name))
        {
            return $this->$priv_name;
        }
        else
        {
            return NULL;
        }
    }
}

$obj = new MyObject('string value');

echo $obj->property;        // Output 'string value'
echo empty($obj->property); // Output 1 (means, that property is empty)

Would this mean, that the __get() magic function is not called when using empty()?

btw. I'm running PHP version 5.0.4

+3  A: 

If you want to use empty or isset with properties, you need to declare a member function called __isset.

Here's a possible implementation:

public function __isset($name)
{
    $priv_name = "_{$name}";

    return isset($this->$priv_name);
}
zildjohn01
+3  A: 

Yes, that's what it means. empty is not your everyday function, it's a language construct that doesn't play by normal rules. Because in fact, $obj->property does not exist, so the result is correct.

You'll need to implement __isset() for empty and isset to work.

deceze