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

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

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();
?>