<?php class Laptop { function Laptop() { $this->model = "ispiron"; } } // create an new object $b = new Laptop (); // Show all properties echo $b->model; ?>