πŸš€ DevOps Certified Professional
πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 | 🀝 +1 (469) 756-6329 πŸ” Contact@DevOpsSchool.com

Access modifier in PHP

DevOps

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

What are Access Modifiers ?

Access modifiers are object-oriented programming that is used to set the accessibility of classes, constructors, methods, and other members of php.
Using the access modifiers we can set the scope or accessibility of these classes, methods, constructors, and other members. 

There are three types of access modifier in PHP

  • public
  • protected
  • private

Public :- When we define class members as public, then they are accessible from anywhere, even from outside of the class scope.

eg:-

Protected: Class members declared protected can be accessed only within the class itself and by inheriting classes.

eg:-

Private: Class members declared as private may only be accessed by the class that defines the member.

eg:-