La función ReflectionClass::getStaticPropertyValue() es una función incorporada en PHP que se utiliza para devolver el valor de la propiedad estática.
Sintaxis:
mixed ReflectionClass::getStaticPropertyValue( string $name, mixed &$def_value )
Parámetros: esta función acepta un solo nombre de parámetro que es el nombre de la propiedad estática especificada.
Valor devuelto: esta función devuelve el valor de las propiedades estáticas.
Los siguientes programas ilustran la función ReflectionClass::getStaticPropertyValue() en PHP:
Programa 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); ?>
Producción:
string(2) "EE"
Programa 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); ?>
Producción:
string(3) "CSE" string(3) "ECE" string(2) "EE"
Referencia: https://www.php.net/manual/en/reflectionclass.getstaticpropertyvalue.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA