Which keyword is used to create a class in PHP?
- class
- define
- new class
- make class
The 'class' keyword is used to define and create a class in PHP. Classes are the blueprint for objects in object-oriented programming.
Loading...
Related Quiz
- What does PDO stand for in the context of PHP?
- Which of the following are true about numbers in PHP?
- The break statement in PHP is used to ______ the current loop and move the program control to the line immediately following the loop.
- You cannot modify global variables using the $GLOBALS superglobal in PHP.
- The properties and methods of a class are accessed outside the class using the ________ operator.