vote up 1 vote down star

Just an idea:

example (in PHP): to set name: $object->name('name'); to get name: $object->name();

If no argument: the method is used as getter, else as setter. For simple getters/setter. Stupid, whatever, maybe?

edit: to follow up on the answers: I don't really like get and set because I prefer to have the interface as explicit as possible. When there are only a few properties it's also overkill IMHO. So I'd like to narrow it down to classes/objects with a couple of explicit getters/setters.

flag

1  
If you prefer the interface to be as explicit as possible, why are you even considering having one method that does two different things depending on what gets passed to it? – jeyoung Aug 1 at 13:23
Good question. I was hoping that the idea would be clear when confronted with it. Not as clear as having setX/getX but sufficient to trade off a little clarity for a less cluttered interface. – koen Aug 1 at 17:08
I've tried many different methods, and using a function with the same name as the class property is my favourite. __get and __set make the calling code nice but the class code a bit ugly. And there is not much difference between $obj->property and $obj->property(). – DisgruntledGoat Aug 24 at 12:49

3 Answers

vote up 0 vote down check

Sure, you could do that if it makes sense in your application, otherwise I would just use the standard getters/setters which have already been set up for you. Your function could look something like this:

public function name($val = null)
{
  if (is_null($val))
  {
    return $this->name;
  }
  else
  {
    $this->name = $val;
  }
}
link|flag
I'd like to know the reason behind the downvote. – koen Aug 1 at 0:38
Me too... ;-) – James Skidmore Aug 1 at 0:47
2  
I wasn't the downvoter, but I'd like to point out that this kind of combined getter/setter doesn't allow you to set the property in question to NULL. – Otterfan Aug 31 at 21:03
Good point Otterfan! – James Skidmore Sep 1 at 0:19
vote up 2 vote down

It can be done using the __call() magic method.

class Test {
    public function __call($name, array $args) {
        $variable =& $this->$name;
        if(!empty($args)) {
            $variable = $args[0];
        }
        return $variable;
    }
}
link|flag
Are you intentionally returning the property for sets? – hobodave Aug 1 at 0:15
Yes . – orlandu63 Aug 1 at 0:16
Its probably for brevity, but could be a nice side effect, especially if you put something in there to restrict what variables could be added. – Chacha102 Aug 1 at 0:18
vote up 2 vote down

The problem is it would be hard to follow. I'd much rather use PHP5's __get and __set so it is more natural to get and set variables, and everyone would know exactly what I am doing. IE:

class myClass
{

    function __get($name)
    {
       return $this->array[$name];
    }
    function __set($name, $value)
    {
       $this->array[$name] = $value;
    }
    function print()
    {
       echo $this->array['test'];
    }
}
$obj = new myClass;
$obj->test = "Hi";
echo $obj->test; //echos Hi.
$obj->print(); //echos Hi.
link|flag

Your Answer

Get an OpenID
or

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