Php:如何通过反射列出静态字段/属性?

发布于 2024-11-18 01:38:00 字数 295 浏览 4 评论 0原文

假设我有这个类:

class Example {    
    public static $FOO = array('id'=>'foo', 'length'=>23, 'height'=>34.2);
    public static $BAR = array('id'=>'bar', 'length'=>22.5, 'height'=>96.223);
}

如何使用反射来获取静态字段的列表? (类似 array('$FOO', '$BAR') 之类的东西?)

Let's say I have this class:

class Example {    
    public static $FOO = array('id'=>'foo', 'length'=>23, 'height'=>34.2);
    public static $BAR = array('id'=>'bar', 'length'=>22.5, 'height'=>96.223);
}

How could I use reflection to get a list of the static fields? (Something like array('$FOO', '$BAR')?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海蓝天 2024-11-25 01:38:00

您需要使用 [ReflectionClass][1]getProperties() 函数将返回ReflectionProperty 对象。 ReflectionProperty 对象有一个 isStatic() 方法会告诉您该属性是否是静态的,以及 getName() 返回名称的方法。

示例:

<?php

class Example {    
    public static $FOO = array('id'=>'foo', 'length'=>23, 'height'=>34.2);
    public static $BAR = array('id'=>'bar', 'length'=>22.5, 'height'=>96.223);
}

$reflection = new ReflectionClass('Example'); 
$properties = $reflection->getProperties();
$static = array();

if ( ! empty($properties) )
  foreach ( $properties as $property )
    if ( $property->isStatic() )
      $static[] = $property->getName();

print_r($static);

You'll want to use [ReflectionClass][1]. The getProperties() function will return an array of ReflectionProperty objects. The ReflectionProperty object have a isStatic() method which will tell you whether the property is static or not and a getName() method that return the name.

Example:

<?php

class Example {    
    public static $FOO = array('id'=>'foo', 'length'=>23, 'height'=>34.2);
    public static $BAR = array('id'=>'bar', 'length'=>22.5, 'height'=>96.223);
}

$reflection = new ReflectionClass('Example'); 
$properties = $reflection->getProperties();
$static = array();

if ( ! empty($properties) )
  foreach ( $properties as $property )
    if ( $property->isStatic() )
      $static[] = $property->getName();

print_r($static);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文