The properties and methods of a class are accessed outside the class using the ________ operator.
- Dot (.)
- Scope (::)
- Arrow (->)
- Hash (#)
In PHP, properties and methods of a class are accessed outside the class using the Arrow (->) operator, specifically for object-oriented access.
Loading...