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

I'm not a PHP developer, so I'm wondering if in PHP is more popular to use explicit getter/setters, in a pure OOP style, with private fields (the way I like):

class MyClass {
    private $firstField;
    private $secondField;

    public function getFirstField() {
        return $this->firstField;
    }
    public function setFirstField($x) {
        $this->firstField = $x;
    }
    public function getSecondField() {
        return $this->secondField;
    }
    public function setSecondField($x) {
        $this->secondField = $x;
    }
}

or just public fields:

class MyClass {
    public $firstField;
    public $secondField;
}

Thanks

share|improve this question
1  
After trying some code from the answers I used the code you're using in the question. How sad :-( – sumid Feb 16 at 1:08

8 Answers

up vote 54 down vote accepted

You can use php magic methods __get and __set.

<?php
class MyClass {
  private $firstField;
  private $secondField;

  public function __get($property) {
    if (property_exists($this, $property)) {
      return $this->$property;
    }
  }

  public function __set($property, $value) {
    if (property_exists($this, $property)) {
      $this->$property = $value;
    }

    return $this;
  }
}
?>
share|improve this answer
4  
I think you mean __get and __set. There are two underscores, not one. Here is the direct link to the right part of the page: php.net/manual/en/… (+1 for a correct answer) – Computerish Dec 18 '10 at 15:41
@Computerish: Nah, it's the SO formatting that messed up. I've fixed it now. – BoltClock Dec 18 '10 at 15:41
4  
Whats the benefit against public properties, if there are no validation/sanitation? – KingCrunch May 14 '11 at 0:06
2  
@KingCrunch, this is just an example. A very very dummy example for a powerful resource. – Dave May 19 '11 at 1:07
2  
That's not really setter and getter. Typically I need for each property different implementation of getter! – sumid Feb 16 at 0:59
show 9 more comments

Why use getters and setters?

  1. Scalability: It's easier refactor a getter than search all the var assignments in a project code.
  2. Debugging: You can put breakpoints at setters and getters.
  3. Cleaner: Magic functions are not good solution for writting less, your IDE will not suggest the code. Better use templates for fast-writting getters.

direct assignment and getters/setters

share|improve this answer

Encapsulation is important in any OO language, popularity has nothing to do with it. In dynamically typed languages, like PHP, it is especially useful because there is little ways to ensure a property is of a specific type without using setters.

In PHP, this works:

class Foo {
   public $bar; // should be an integer
}
$foo = new Foo;
$foo->bar = "string";

In Java, it doesn't:

class Foo {
   public int bar;
}
Foo myFoo = new Foo();
myFoo.bar = "string"; // error

Using magic methods (__get and __set) also works, but only when accessing a property that has lower visibility than the current scope can access. It can easily give you headaches when trying to debug, if it is not used properly.

share|improve this answer
3  
Getters and setter doesn't bring encapsulation. Encapsulation == objects do something with its own data instead of giving them outside. Getters and setters are not a tool for enforcing type in dynamically typed languages like PHP. – smentek May 13 '11 at 23:54
5  
@smentek: You're clearly missing at least half of what encapsulation really is. – netcoder May 15 '11 at 6:48
no, but you do :). – smentek May 16 '11 at 13:30

Well, php does have magic methods __get, __set, __isset & __unset, which is always a start. Alas proper (get it?) OO properties is more than magic methods. The main problem with PHP's implementation is that magic methods are called for all inaccessible properties. Which means you have to Repeat Yourself (eg. by calling property_exists()) in the magic methods when determining if name is actually a property of your object. And you can't really solve this general problem with a base class unless all your classes inherit from ie. ClassWithProperties, since PHP lacks multiple inheritance.

In contrast, Python new style classes gives you property(), which lets you explicitly define all your properties. C# has special syntax. http://en.wikipedia.org/wiki/Property_(programming)

share|improve this answer
1  
Calling property_exists, class_vars or array_key_exists (ie, checking if property really exists) is just a step in order to avoid a runtime fatal error. I'm not sure if not being displicent is the same as being repetitive in coding. – Dave Dec 18 '10 at 16:13
1  
Fair enough. But in Python and C# this repetition is not needed. I think that is a strength. – Emanuel Landeholm Dec 18 '10 at 16:19

If you preffer to use the __call function, you can use this method. It works with

  • $this->property() //Get
  • $this->property($value) //Set
  • $this->getProperty() //Get
  • $this->setProperty($value) //Set

kalsdas

public function __call($name, $arguments) {

   //Getting and setting with $this->property($optional);

    if (property_exists(get_class($this), $name)) {


//Always set the value if a parameter is passed
    if (count($arguments) == 1) {
        /* set */
        $this->$name = $arguments[0];
    } else if (count($arguments) > 1) {
        throw new \Exception("Setter for $name only accepts one parameter.");
    }

    //Always return the value (Even on the set)
    return $this->$name;
}

//If it doesn't chech if its a normal old type setter ot getter
//Getting and setting with $this->getProperty($optional);
//Getting and setting with $this->setProperty($optional);
$prefix = substr($name, 0, 3);
$property = strtolower($name[3]) . substr($name, 4);
switch ($prefix) {
    case 'get':
        return $this->$property;
        break;
    case 'set':
        //Always set the value if a parameter is passed
        if (count($arguments) != 1) {
            throw new \Exception("Setter for $name requires exactly one parameter.");
        }
        $this->$property = $arguments[0];
        //Always return the value (Even on the set)
        return $this->$name;
   default:
        throw new \Exception("Property $name doesn't exist.");
        break;
}

}

share|improve this answer
class MyClass {
    private $firstField;
    private $secondField;
    private $thirdField;

    public function __get( $name ) {
        if( method_exists( $this , $method = ( 'get' . ucfirst( $name  ) ) ) )
            return $this->$method();
        else
            throw new Exception( 'Can\'t get property ' . $name );
    }

    public function __set( $name , $value ) {
        if( method_exists( $this , $method = ( 'set' . ucfirst( $name  ) ) ) )
            return $this->$method( $value );
        else
            throw new Exception( 'Can\'t set property ' . $name );
    }

    public function __isset( $name )
    {
        return method_exists( $this , 'get' . ucfirst( $name  ) ) 
            || method_exists( $this , 'set' . ucfirst( $name  ) );
    }

    public function getFirstField() {
        return $this->firstField;
    }

    protected function setFirstField($x) {
        $this->firstField = $x;
    }

    private function getSecondField() {
        return $this->secondField;
    }
}

$obj = new MyClass();

echo $obj->firstField; // works
$obj->firstField = 'value'; // works

echo $obj->getFirstField(); // works
$obj->setFirstField( 'value' ); // not works, method is protected

echo $obj->secondField; // works
echo $obj->getSecondField(); // not works, method is private

$obj->secondField = 'value'; // not works, setter not exists

echo $obj->thirdField; // not works, property not exists

isset( $obj->firstField ); // returns true
isset( $obj->secondField ); // returns true
isset( $obj->thirdField ); // returns false

Ready!

share|improve this answer

More popular doesn't mean better. Using getters/setters is highly recommended but I think still more popular are public properties.

share|improve this answer

There are many ways to create sourcecode in a netbeans-convention. This is nice. It makes thinks such easyer === FALSE. Just use the traditionel, specially if you are not sure which one of the properties should be encapsuled and which one not. I know, it is a boi.... pla... code, but for debugging-works and many other thinks it is the better, clear way. Dont spend to much time with thousend of arts how to make simple getters and setters. You cannot implement too some design patterns like the demeter-rule and so on, if you use magics. In specific situation you can use magic_calls or for small, fast and clear solutions. Sure you could make solutions for design-patters in this way too, but why to make you live more difficult.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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