PHP | ReflectionProperty getDeclaringClass() Function Last Updated : 30 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The ReflectionProperty::getDeclaringClass() function is an inbuilt function in PHP which is used to return the specified declaring classes. Syntax: ReflectionClass ReflectionProperty::getDeclaringClass ( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the specified declaring classes. Below programs illustrate the ReflectionProperty::getDeclaringClass() function in PHP: Program 1: php <?php // Initializing a user-defined class Company class Company { public $SizeOfGeeksforGeeks = 13; public $SizeOfGFG = 3; } // Using ReflectionProperty $A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); $B = new ReflectionProperty('Company', 'SizeOfGFG'); // Calling the getDeclaringClass() function $C = $A->getDeclaringClass(); $D = $B->getDeclaringClass(); // Getting the specified declaring classes var_dump($C); var_dump($D); ?> Output: object(ReflectionClass)#3 (1) { ["name"]=> string(7) "Company" } object(ReflectionClass)#4 (1) { ["name"]=> string(7) "Company" } Program 2: php <?php // Initializing some user-defined classes class Department1 { public $SizeOfHR = 2; } class Department2 { public $SizeOfCoding = 6; } class Department3 { public $SizeOfMarketing = 9; } // Using ReflectionProperty over above classes $A = new ReflectionProperty('Department1', 'SizeOfHR'); $B = new ReflectionProperty('Department2', 'SizeOfCoding'); $C = new ReflectionProperty('Department3', 'SizeOfMarketing'); // Calling the getDeclaringClass() function $D = $A->getDeclaringClass(); $E = $B->getDeclaringClass(); $F = $C->getDeclaringClass(); // Getting the specified declaring classes var_dump($D); var_dump($E); var_dump($F); ?> Output: object(ReflectionClass)#4 (1) { ["name"]=> string(11) "Department1" } object(ReflectionClass)#5 (1) { ["name"]=> string(11) "Department2" } object(ReflectionClass)#6 (1) { ["name"]=> string(11) "Department3" } Reference: https://www.php.net/manual/en/reflectionproperty.getdeclaringclass.php Comment More infoAdvertise with us Next Article PHP | ReflectionParameter getDeclaringClass() Function K Kanchan_Ray Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- Reflection Similar Reads PHP | ReflectionParameter getDeclaringClass() Function The ReflectionParameter::getDeclaringClass() function is an inbuilt function in PHP which is used to return the declaring class. Syntax: ReflectionClass ReflectionParameter::getDeclaringClass ( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the de 2 min read PHP | ReflectionMethod getDeclaringClass() Function The ReflectionMethod::getDeclaringClass() function is an inbuilt function in PHP which is utilized to return the name of the declared class. Syntax: ReflectionClass ReflectionMethod::getDeclaringClass ( void ) Parameters: This function does not accepts any parameter. Return Value: This function retu 1 min read PHP | ReflectionProperty getName() Function The ReflectionProperty::getName() function is an inbuilt function in PHP which is used to return the name of the specified property. Syntax: string ReflectionProperty::getName ( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the name of the speci 1 min read PHP | ReflectionProperty getModifiers() Function The ReflectionProperty::getModifiers() function is an inbuilt function in PHP which is used to return the numeric representation of the specified modifiers. Syntax: int ReflectionProperty::getModifiers ( void ) Parameters: This function does not accept any parameters. Return Value: This function ret 2 min read PHP | ReflectionProperty getDocComment() Function The ReflectionProperty::getDocComment() function is an inbuilt function in PHP which is used to return the doc comment of the specified property. Syntax: string ReflectionProperty::getDocComment ( void ) Parameters: This function does not accept any parameters. Return Value: This function returns th 2 min read PHP | ReflectionProperty isStatic() Function The ReflectionProperty::isStatic() function is an inbuilt function in PHP which is used to return TRUE if the specified property is static, otherwise returns FALSE. Syntax: bool ReflectionProperty::isStatic( void ) Parameters: This function does not accept any parameter. Return Value: This function 2 min read Like