📜  PHP | ReflectionClass getProperties()函数

📅  最后修改于: 2022-05-13 01:56:43.257000             🧑  作者: Mango

PHP | ReflectionClass getProperties()函数

ReflectionClass::getProperties()函数是PHP中的一个内置函数,用于返回反射属性的数组。

句法:

ReflectionClass::getProperties($filter) : array

参数:此函数接受一个参数过滤器,该过滤器有助于删除一些反射属性。

返回值:此函数返回反射属性的数组。

下面的程序说明了PHP中的 ReflectionClass::getProperties()函数:
方案一:

getProperties(ReflectionProperty::IS_PUBLIC);
  
// Getting an array of the reflected properties
var_dump($A);
?>

输出:

array(2) {
  [0]=>
  object(ReflectionProperty)#2 (2) {
    ["name"]=>
    string(5) "Dept1"
    ["class"]=>
    string(11) "Departments"
  }
  [1]=>
  object(ReflectionProperty)#3 (2) {
    ["name"]=>
    string(5) "Dept3"
    ["class"]=>
    string(11) "Departments"
  }
}

方案二:

getProperties();
    
// Getting an array of the reflected properties
var_dump($A);
?>
输出:
array(3) {
  [0]=>
  object(ReflectionProperty)#2 (2) {
    ["name"]=>
    string(2) "C1"
    ["class"]=>
    string(7) "Company"
  }
  [1]=>
  object(ReflectionProperty)#3 (2) {
    ["name"]=>
    string(2) "C2"
    ["class"]=>
    string(7) "Company"
  }
  [2]=>
  object(ReflectionProperty)#4 (2) {
    ["name"]=>
    string(2) "C3"
    ["class"]=>
    string(7) "Company"
  }
}

参考: https://www. PHP.net/manual/en/reflectionclass.getproperties。 PHP