PHP | ReflectionProperty __toString() Function Last Updated : 31 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The ReflectionProperty::__toString() function is an inbuilt function in PHP which is used to return the string form of the specified property. Syntax: public string ReflectionProperty::__toString ( void ) : string Parameters: This function does not accept any parameters. Return Value: This function returns the string form of the specified property. Below programs illustrate the ReflectionProperty::__toString() function in PHP: Program 1: php <?php // Initializing a user-defined class Company class Company { private $SizeOfGeeksforGeeks = 13; private $SizeOfGFG = 3; } // Using ReflectionProperty $A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); $B = new ReflectionProperty('Company', 'SizeOfGFG'); // Calling the __toString() function $C = $A->__toString(); $D = $B->__toString(); // Getting the string form of the specified property. var_dump($C); var_dump($D); ?> Output: string(52) "Property [ <default> private $SizeOfGeeksforGeeks ] " string(42) "Property [ <default> private $SizeOfGFG ] " 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 __toString() function and // getting the string form of the specified property. var_dump($A->__toString()); var_dump($B->__toString()); var_dump($C->__toString()); ?> Output: string(43) "Property [ <default> protected $SizeOfHR ] " string(44) "Property [ <default> public $SizeOfCoding ] " string(44) "Property [ public static $SizeOfMarketing ] " Reference: https://www.php.net/manual/en/reflectionproperty.tostring.php Comment More infoAdvertise with us Next Article PHP | ReflectionExtension __toString() Function K Kanchan_Ray Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- Reflection Similar Reads PHP | ReflectionParameter __toString() Function The ReflectionParameter::__toString() function is an inbuilt function in PHP which is used to return the string form of the specified parameter. Syntax: string ReflectionParameter::__toString ( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the s 2 min read PHP | ReflectionMethod __toString() Function The ReflectionMethod::__toString() function is an inbuilt function in PHP which is used to return the string representation of the specified method object. Syntax: string ReflectionMethod::__toString ( void ) Parameters: This function does not accept any parameter. Return Value: This function return 2 min read PHP | ReflectionExtension __toString() Function The ReflectionExtension::__toString() function is an inbuilt function in PHP which is used to return the string representation of the specified extension object. Syntax: ReflectionExtension::__toString() Parameters: This function does not accept any parameter. Return Value: This function returns the 2 min read PHP | ReflectionFunction __toString() Function The ReflectionFunction::__toString() function is an inbuilt function in PHP which is used to return the string representation of the specified function.Syntax: string ReflectionFunction::__toString( void ) Parameters: This function does not accept any parameters.Return Value: This function returns t 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 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 Like