• Call Us: +92-333-7276335
  • - Mail Us: info@shekztech.com

Plot 1177, Sector 31B - Crossing, Karachi, Sindh

Inheritance in object-oriented programming in PHP

Please Login and enroll in this course to view the lesson.

Another OOP concept is inheritance, why you need inheritance..? how can we reuse our code..? You gonna learn inheritance in PHP in this video.

class Car{
    public $carName;
    public $carPrice;
    public $carColor;
    public static $myStaticProperty = 'shakzee.com';
    private $myPrivate = 'shakzee';*/
    private function myFunction(){
        echo 'Private function';
    }
    public function display(){
        echo $this->carName.'<br>';
        echo $this->carColor.'<br>';
        echo $this->carPrice.'<br>';
        //echo $this->myProperty;
        //echo $this->myPrivate;
        $this->myFunction();
    }
    public function test($para){
        echo $para . ' method ';
    }
    public static function myStatic(){
        echo 'my static method';
    }
}//class

class BMW extends Car {

}

Car::myStatic();
echo '<br>';
echo Car::$myStaticProperty;