Friday, October 24, 2025
HomeLanguagesPHP | ReflectionClass getStaticPropertyValue() Function

PHP | ReflectionClass getStaticPropertyValue() Function

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
   
// 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
   
// 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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS