get_class() function returns the class name. : get_class « Reflection « PHP






get_class() function returns the class name.

 
The syntax is: string get_class(object obj_name);


<?
class Vehicle {
}

class Land extends Vehicle {
}

$car = new Land;

$class_a = get_class($car);
print_r($class_a);
?>
  
  








Related examples in the same category