PHP | ReflectionClass getStaticProperties()函数
ReflectionClass::getStaticProperties()函数是PHP中的一个内置函数,用于返回静态属性数组。这个函数目前没有记录,但它的参数列表是可用的。
句法:
ReflectionClass::getStaticProperties(void) : array
参数:此函数不接受任何参数。
返回值:此函数返回静态属性的数组。
下面的程序说明了PHP中的 ReflectionClass::getStaticProperties()函数:
方案一:
getStaticProperties();
// Getting an array of the static properties
var_dump($A);
?>
输出:
array(1) {
["Dept3"]=>
string(2) "EE"
}
方案二:
getStaticProperties();
// Getting an array of the static properties
// if present
var_dump($Property);
?>
输出:
array(3) {
["name"]=>
string(13) "GeeksforGeeks"
["addr"]=>
string(5) "Noida"
["email"]=>
string(21) "abc@geeksforgeeks.org"
}
参考: https://www. PHP.net/manual/en/reflectionclass.getstaticproperties。 PHP