Program:
<?php
class Student
{
protected $roll_no;
protected $name;
function __construct()
{
$this->roll_no = 4;
$this->name="Atharva";
}
function display()
{
echo "RollNo: $this->roll_no <br/>";
echo "Name: $this->name <br/>";
}
}
$s1 = new Student;
$s1->display();
?>
Output: