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

When and why should I use and what's the difference between, public, private and protected functions/variables inside a class?

Examples:

// Public
public $variable;
public function doSomething(){
    ...code...
}

// Private
private $variable;
private function doSomething(){
    ...code...
}

// Protected
protected $variable;
protected function doSomething(){
    ...code...
}
share|improve this question
8  
I think this question would also benefit from answers with practical examples of the use of each, instead of providing the literal definition of what each keyword does. – Matthew Jul 17 '11 at 0:30

8 Answers

up vote 178 down vote accepted

You use:

  • public scope to make that variable/function available from anywhere, other classes and instances of the object.

  • private scope when you want your variable/function to be visible in its own class only.

  • protected scope when you want to make your variable/function visible in all classes that extend current class including the parent class.

More: (For comprehensive information)

share|improve this answer
8  
+1, for very clear answer :) – diEcho Dec 26 '11 at 8:11
8  
protected scope when you want to make your variable/function visible in all classes that extend current class AND its parent classes. – Shahid May 2 '12 at 8:24
1  
@Shahid - I don't understand your point. Any class that extends class A also extend A's parent class, no? – JDelage Sep 13 '12 at 17:51
1  
@JDelage - Please see the link http://www.php.net/manual/en/language.oop5.visibility.php#109324 – Shahid Oct 18 '12 at 14:06
@JDelage - and this link also link – Shahid Oct 19 '12 at 5:48
show 2 more comments

private - can be accessed from WITHIN the class only

protected - can be accessed from WITHIN the class and INHERITING classes

public - can be accessed from code OUTSIDE the class as well

This applies to functions as well as variables.

share|improve this answer
Not sure if the protected definition is correct here, from the actual selected answer it seems, Protected - Can be accessed only from the inherited class onwards and not from the original/parent class. Saying "WITHIN the class" can be a bit confusing. – pal4life Oct 11 '12 at 0:54
2  
I don't think so, in fact it seems that the selected answer is the one that is confusing here. See Shahids comment. IMHO a protected method can very well be accessed from within the original class. – Olaf Oct 11 '12 at 6:40
can a class can access another class's public? – Serjas Nov 8 '12 at 9:59
1  
Yes it can-can. – Olaf Nov 8 '12 at 11:02

It is typically considered good practice to default to the lowest visibility required as this promotes data encapsulation and good interface design. When considering member variable and method visibility think about the role the member plays in the interaction with other objects.

If you "code to an interface rather than implementation" then it's usually pretty straightforward to make visibility decisions. In general, variables should be private or protected unless you have a good reason to expose them. Use public accessors (getters/setters) instead to limit and regulate access to a class's internals.

To use a car as an analogy, things like speed, gear, and direction would be private instance variables. You don't want the driver to directly manipulate things like air/fuel ratio. Instead, you expose a limited number of actions as public methods. The interface to a car might include methods such as accelerate(), deccelerate()/brake(), setGear(), turnLeft(), turnRight(), etc.

The driver doesn't know nor should he care how these actions are implemented by the car's internals, and exposing that functionality could be dangerous to the driver and others on the road. Hence the good practice of designing a public interface and encapsulating the data behind that interface.

This approach also allows you to alter and improve the implementation of the public methods in your class without breaking the interface's contract with client code. For example, you could improve the accelerate() method to be more fuel efficient, yet the usage of that method would remain the same; client code would require no changes but still reap the benefits of your efficiency improvement.

Edit: Since it seems you are still in the midst of learning object oriented concepts (which are much more difficult to master than any language's syntax), I highly recommend picking up a copy of PHP Objects, Patterns, and Practice by Matt Zandstra. This is the book that first taught me how to use OOP effectively, rather than just teaching me the syntax. I had learned the syntax years beforehand, but that was useless without understanding the "why" of OOP.

share|improve this answer

The difference is as follows:

Public :: A public variable or method can be accessed directly by any user of the class.

Protected :: A protected variable or method cannot be accessed by users of the class but can be accessed inside a subclass that inherits from the class.

Private :: A private variable or method can only be accessed internally from the class in which it is defined.This means that a private variable or method cannot be called from a child that extends the class.

share|improve this answer

They're there to allow for different levels of encapsulation

share|improve this answer

Considering 'when':
I tend to declare everything as private initially, if I'm not exactly sure. Reason being, that it's usually much easier to turn a private method public than the other way round. That's because you can at least be sure that the private method hasn't been used anywhere but in the class itself. A public method may already be in use everywhere, possibly requiring an extensive re-write.

share|improve this answer

PHP manual has a good read on the question here.

The visibility of a property or method can be defined by prefixing the declaration with the keywords public, protected or private. Class members declared public can be accessed everywhere. Members declared protected can be accessed only within the class itself and by inherited and parent classes. Members declared as private may only be accessed by the class that defines the member.

share|improve this answer

Variables in PHP are cast in three different type:

Public : values of this variable types are available in all scope and call on execution of you code. declare as: public $examTimeTable;

Private: Values of this type of variable are only available on only to the class it belongs to. private $classRoomComputers;

Protected: Values of this class only and only available when Access been granted in a form of inheritance or their child class. generally used :: to grant access by parent class

protected $familyWealth;

share|improve this answer

protected by bmargulies Sep 21 '12 at 0:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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