PHP Class Inheritance Example
<?php class Car { public $wheels = 4; function greeting(){ return "Hello there"; } } $bmw = new Car(); class Trucks extends Car{ } $volvo = new Trucks(); echo $volvo->wheels; ?>