-
Video : Classes, properties, objects in PHP
-
Video : Classes, properties, objects part 2
-
Video : Constructor in PHP
-
Video : Inheritance in object-oriented programming in PHP
-
Video : Method overriding in php
-
Video : Access Modifiers in php
-
Video : Access Modifiers part 2 in php
-
Video : Scope Resolution operator in PHP
-
Video : Interfaces in PHP | OOP in PHP
-
Video : Final Keyword in php
-
Video : Abstract class and method in PHP
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