PHP COURSE • LESSON 40
PHP Inheritance
Inheritance allows one class to use properties and methods from another class.
inheritance.php
<?php
class Animal{
public function sound(){
echo "Animal Sound";
}
}
class Dog extends Animal{
}
$dog = new Dog();
$dog->sound();
?>