PHP program to print the class name using magic constant __CLASS__
<?php
//PHP program to print the class name
//using magic constant __CLASS__.
class Sample
{
public function MyFunction()
{
print("Class Name: ".__CLASS__."<br>");
}
}
$S=new Sample();
$S->MyFunction();
?>
Output
Class Name: Sample
