Hi! I'm Bishwajit Adhikary, a student currently living in Rangpur, Bangladesh.
<?php
class Car {
function Car() {
$this->model = "Tesla";
}
}
// create an object
$lightning = new Car();
// show object properties
echo $lightning->model;
?>