Open In App

PHP | Reflection getName() Function

Last Updated : 30 Nov, 2019
Comments
Improve
Suggest changes
2 Likes
Like
Report
The Reflection::getName() function is an inbuilt function in PHP which is used to return the name of the specified class. Syntax:
string Reflection::getName( void )
Parameters: This function does not accept any parameters. Return Value: This function returns the name of the specified class. Below programs illustrate the Reflection::getName() function in PHP: Program 1:
Output:
string(11) "Departments"
Program 2:
Output:
string(15) "ReflectionClass"
Reference: https://www.php.net/manual/en/reflectionclass.getname.php

Next Article

Similar Reads