-
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
Classes, properties, objects in PHP
Please Login and enroll in this course to view the lesson.
In php5 We have some concepts about object-oriented programming like classes, properties, and objects, in these tutorials, we learn the basic things in PHP/PHP5.
<?php
class Car{
public $carName;
public $carPrice;
public $carColor;
public static $myStaticProperty = 'shakzee.com';
private $myPrivate = 'shakzee';*/
}//class
$obj = new Car();
?>