What does accessing a class via :: mean?
- Static access
- Dynamic access
- Private access
- Protected access
Accessing a class via :: represents static access, allowing you to access static properties or invoke static methods of a class. Learn more: http://php.net/manual/en/language.oop5.static.php
Loading...
Related Quiz
- How is it possible to cast types in PHP?
- In PHP, the sqrt() function returns the square root of a(n) ______.
- How many times will the block of code in a PHP do...while loop execute at a minimum?
- What are some common practices in PHP when dealing with callback functions?
- What are some common practices in PHP when using abstract classes in OOP?