Problem Statement
Which keyword is used for inheritance in PHP?
Explanation
In PHP, the 'extends' keyword allows one class to inherit properties and methods from another class.
Example:
class ParentClass {}
class ChildClass extends ParentClass {}
Code Solution
SolutionRead Only
class Vehicle {}
class Car extends Vehicle {}