PHP | ReflectionClass getStaticPropertyValue() Function Last Updated : 30 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The ReflectionClass::getStaticPropertyValue() function is an inbuilt function in PHP which is used to return the value of the static property. Syntax: mixed ReflectionClass::getStaticPropertyValue( string $name, mixed &$def_value ) Parameters: This function accepts a single parameter name which is the name of the specified static property. Return Value: This function returns the value of the static properties. Below programs illustrate the ReflectionClass::getStaticPropertyValue() function in PHP: Program 1: php <?php // Defining a class named as Departments class Departments { static $Dept1 = 'CSE'; private static $Dept2 = 'ECE'; public static $Dept3 = 'EE'; } // Using ReflectionClass over the class Departments $ReflectionClass = new ReflectionClass('Departments'); // Calling getStaticPropertyValue() function $A = $ReflectionClass->getStaticPropertyValue('Dept3'); // Getting the value of the static property. var_dump($A); ?> Output: string(2) "EE" Program 2: php <?php // Defining a class named as Departments class Departments { static $Dept1 = 'CSE'; static $Dept2 = 'ECE'; public static $Dept3 = 'EE'; } // Using ReflectionClass over the class Departments $ReflectionClass = new ReflectionClass('Departments'); // Calling getStaticPropertyValue() functions $A = $ReflectionClass->getStaticPropertyValue('Dept1'); $B = $ReflectionClass->getStaticPropertyValue('Dept2'); $C = $ReflectionClass->getStaticPropertyValue('Dept3'); // Getting the value of the static property. var_dump($A); var_dump($B); var_dump($C); ?> Output: string(3) "CSE" string(3) "ECE" string(2) "EE" Reference: https://www.php.net/manual/en/reflectionclass.getstaticpropertyvalue.php Comment More infoAdvertise with us Next Article PHP | ReflectionClass getStaticPropertyValue() Function K Kanchan_Ray Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- ReflectionClass PHP- Reflection +1 More Similar Reads PHP | ReflectionClass getStaticProperties() Function The ReflectionClass::getStaticProperties() function is an inbuilt function in PHP which is used to return an array of the static properties. This function is not documented currently, but its argument list is available. Syntax: ReflectionClass::getStaticProperties(void) : array Parameters: This func 1 min read PHP | ReflectionClass getProperty() Function The ReflectionClass::getProperty() function is an inbuilt function in PHP which is used to return an array of the ReflectionProperty for the specified class. Syntax: ReflectionClass::getProperty ( string $name ) : array Parameters: This function accepts a parameter name which is name of the property 1 min read PHP | ReflectionClass getProperties() Function The ReflectionClass::getProperties() function is an inbuilt function in PHP which is used to return an array of the reflected properties. Syntax: ReflectionClass::getProperties($filter) : array Parameters: This function accepts a parameter filter which helps to remove some of the reflected propertie 2 min read PHP | ReflectionClass getStartLine() Function The ReflectionClass::getStartLine() function is an inbuilt function in PHP which is used to return the line number from where the user defined class get started. Syntax: int ReflectionClass::getStartLine( void ) Parameters: This function does not accept any parameters. Return Value: This function re 1 min read PHP | ReflectionClass getDefaultProperties() Function The ReflectionClass::getDefaultProperties() function is an inbuilt function in PHP which is used to return the default properties including inherited properties from a specified class. Syntax: ReflectionClass::getDefaultProperties(void) : array Parameters: This function does not accept any parameter 2 min read Like