PHP | ReflectionProperty isStatic() Function Last Updated : 30 Dec, 2019 Comments Improve Suggest changes Like Article Like Report 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 returns TRUE if the specified property is static, otherwise returns FALSE. Below programs illustrates the ReflectionProperty::isStatic() function in PHP: Program 1: php <?php // Initializing a user-defined class Company class Company { protected $SizeOfGeeksforGeeks = 13; static $SizeOfGFG = 3; } // Using ReflectionProperty $A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); $B = new ReflectionProperty('Company', 'SizeOfGFG'); // Calling the isStatic() function $C = $A->isStatic(); $D = $B->isStatic(); // Getting TRUE if the specified property // is static, FALSE otherwise. var_dump($C); var_dump($D); ?> Output: bool(false) bool(true) Program 2: php <?php // Initializing some user-defined classes class Department1 { protected $SizeOfHR; } class Department2 { public $SizeOfCoding = 6; } class Department3 { static $SizeOfMarketing = 9; } // Using ReflectionProperty over above classes $A = new ReflectionProperty('Department1', 'SizeOfHR'); $B = new ReflectionProperty('Department2', 'SizeOfCoding'); $C = new ReflectionProperty('Department3', 'SizeOfMarketing'); // Calling the isStatic() function and // getting TRUE if the specified property // is static, FALSE otherwise. var_dump($A->isStatic()); var_dump($B->isStatic()); var_dump($C->isStatic()); ?> Output: bool(false) bool(false) bool(true) Reference: https://secure.php.net/manual/en/reflectionproperty.isstatic.php Comment More infoAdvertise with us Next Article PHP | ReflectionProperty isStatic() Function K Kanchan_Ray Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- Reflection Similar Reads PHP | ReflectionProperty isPublic() Function The ReflectionProperty::isPublic() function is an inbuilt function in PHP which is used to return TRUE if the specified property is public, FALSE otherwise. Syntax: bool ReflectionProperty::isPublic ( void ) Parameters: This function does not accept any parameter. Return Value: This function returns 2 min read PHP | ReflectionProperty isPrivate() Function The ReflectionProperty::isPrivate() function is an inbuilt function in PHP which is used to return TRUE if the specified property is private, FALSE otherwise. Syntax: bool ReflectionProperty::isPrivate ( void ) Parameters: This function does not accept any parameter. Return Value: This function retu 2 min read PHP | ReflectionProperty isProtected() Function The ReflectionProperty::isProtected() function is an inbuilt function in PHP which is used to return TRUE if the specified property is protected, FALSE otherwise. Syntax: bool ReflectionProperty::isProtected( void ) Parameters: This function does not accept any parameter. Return Value: This function 2 min read PHP | ReflectionMethod isStatic() Function The ReflectionMethod::isStatic() function is an inbuilt function in PHP which is used to return TRUE if the specified method is static, otherwise FALSE. Syntax: public bool ReflectionMethod::isStatic ( void ) Parameters: This function does not accept any parameter. Return Value: This function return 2 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 getDeclaringClass() Function 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 retu 2 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 | ReflectionMethod isAbstract() Function The ReflectionMethod::isAbstract() function is an inbuilt function in PHP which is used to return TRUE if the specified method is abstract, otherwise FALSE. Syntax: bool ReflectionMethod::isAbstract ( void ) Parameters: This function does not accept any parameter. Return Value: This function returns 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 | ReflectionParameter isVariadic() Function The ReflectionParameter::isVariadic() function is an inbuilt function in PHP which is used to return TRUE if the specified parameter is variadic, otherwise FALSE. Syntax: bool ReflectionParameter::isVariadic ( void ) Parameters: This function does not accept any parameters. Return Value: This functi 2 min read Like