Input:
<?php
class student{
function depertment(){
return "Animash";
}
function details(){
echo $this->depertment();
}
}
$st = new student;
$st ->details();
?>
Output:
Animash
<?php
class student{
function depertment(){
return "Animash";
}
function details(){
echo $this->depertment();
}
}
$st = new student;
$st ->details();
?>
Output:
Animash