Visibility in PHP Classes

Visibility in PHP Classes

Visibility in PHP Classes :

You are ever noticed that every method has their visibility in php.There are 3 types of visibility which is used in php for managing your class methods.

1) Public Visibility in PHP OOP :

If we set any method as public then it means it can be accessible from anywhere either from inside the class, outside the class and in child class.There are no any limitation for public accessors .

Example of public visibility in php oop is given below :

So in above example you are notice that everything is open, there is no any limitation.Variable and method are accessible from outside the class.

2) Private Visibility in PHP OOP :

If we set any method as private then it means it can be accessible within that class only it can't accessible from outside of class or in child class.

You can access property and method within class by using $this keyword.

private method or property in php are used to set restriction over class which means you don't want that outside of classes can access the method.

Example of private visibility in php oop is given below :

3) Protected Visibility in PHP OOP :

If we set any method as protected then it means it can be accessible within the class itself or in child class both.

Example of protected visibility in php oop is given below :

Phone: (+91) 8800417876
Noida, 201301