garyfalkland
7/4/2019 - 8:56 AM

PHP Class Inheritance Example

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;

?>