Thursday, July 23, 2026
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

7 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS