Perfectneeds interview question

What do you know about access modifiers ?

Interview Answer

Anonymous

15 Dec 2021

There are 3 types of access modifiers in PHP which are the public, protected, and private public: can be accessed anywhere inside or outside the class protected: can be accessed within the same class or by a child class that is inheriting from that class private: can be accessed only by the same class