Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
PHP __get and __set magic methods

I have an exam question on Get/Set methods, but I can not find any straight definitions. Could someone please explain/define it for me or just answer this question;

Identify and describe the two in-built "magic" methods used in PHP to retrieve and update private class/object properties.

Thanks.

share|improve this question
You could check out the manual on that subject... – Zombaya May 1 '12 at 23:27
3  
@remi-bond You should really consider accepting more answers to questions you have asked. Having a 67% accept rate tends to diminish the amount of answers you will get – JoeCortopassi May 2 '12 at 0:01

marked as duplicate by mario, Will May 3 '12 at 12:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

The basic idea is this: If you call $foo->bar, where bar was never defined as a property for that class, it will be sent to the get/set magic methods. If you implement these methods, you will then be able to see the name that was called, and in the case of 'set', what value was passed. You can then do whatever you want with it

Example:

public function __set($name, $value)
{
    if ($name === "bar")
    {
        $this->privateProperty = $value;
    }
}

public function __get($name)
{
    if ($name === "bar")
    {
        return $this->privateProperty;
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.