Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

empty() returning TRUE on object's non-empty property

Tags:

object

php

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

like image 716
Michal M Avatar asked Jun 17 '10 09:06

Michal M


2 Answers

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.

like image 99
deceze Avatar answered Sep 28 '22 16:09

deceze


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);
}
like image 23
zildjohn01 Avatar answered Sep 28 '22 14:09

zildjohn01