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

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

Constructor in PHP

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

in PHP/PHP5 we have a concept of the constructor so in this video, you gonna learn if can you create the constructor in PHP.

class Car{
    function __construct($carName,$carColor,$carPrice)
    {
        $this->carName = $carName ;
        $this->carColor = $carColor ;
        $this->carPrice = $carPrice ;
    }


    public $carName;
    public $carPrice;
    public $carColor;
    public static $myStaticProperty = 'shakzee.com';
   

    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