Question d’entretien chez Perfectneeds

What do you know about access modifiers ?

Réponse à la question d'entretien

Utilisateur anonyme

15 déc. 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