ReflectionProperty 类

(PHP 5, PHP 7, PHP 8)

介绍

ReflectionProperty 报告有关类属性的信息。

类概要

class ReflectionProperty implements Reflector {
/* 常量 */
public const int IS_STATIC;
public const int IS_READONLY;
public const int IS_PUBLIC;
public const int IS_PROTECTED;
public const int IS_PRIVATE;
/* 属性 */
public string $name;
public string $class;
/* 方法 */
public __construct(object|string $class, string $property)
private __clone(): void
public static export(mixed $class, string $name, bool $return = ?): string
public getAttributes(?string $name = null, int $flags = 0): array
public getModifiers(): int
public getName(): string
public getValue(?object $object = null): mixed
public hasType(): bool
public isDefault(): bool
public isInitialized(?object $object = null): bool
public isPrivate(): bool
public isPromoted(): bool
public isProtected(): bool
public isPublic(): bool
public isReadOnly(): bool
public isStatic(): bool
public setAccessible(bool $accessible): void
public setValue(object $object, mixed $value): void
public __toString(): string
}

属性

name

属性的名称。只读,尝试写入时会抛出 ReflectionException

class

定义属性的类的名称。只读,尝试写入时会抛出 ReflectionException

预定义常量

ReflectionProperty 修饰符

ReflectionProperty::IS_STATIC

指示 静态 属性。在 PHP 7.4.0 之前,该值为 1

ReflectionProperty::IS_READONLY

指示 只读 属性。从 PHP 8.1.0 开始可用。

ReflectionProperty::IS_PUBLIC

指示 公有 属性。在 PHP 7.4.0 之前,该值为 256

ReflectionProperty::IS_PROTECTED

指示 受保护 属性。在 PHP 7.4.0 之前,该值为 512

ReflectionProperty::IS_PRIVATE

指示 私有 属性。在 PHP 7.4.0 之前,该值为 1024

注意:

这些常量的值可能会在 PHP 版本之间发生变化。建议始终使用这些常量,而不是直接依赖其值。

变更日志

版本 描述
8.0.0 ReflectionProperty::export() 已被移除。

目录

添加备注

用户贡献的备注 2 个备注

rasmus at mindplay dot dk
14 年前
我认为更准确的解释是:

反射类旨在反映应用程序的源代码,而不是任何运行时信息。

我认为您误解了上面示例中的 ReflectionProperty 构造函数。它接受对象作为参数只是为了方便 - 您实际上是在检查该对象的类,而不是对象本身,所以它基本上等同于:

<?php

// 正常工作
$Reflection = new ReflectionProperty(get_class($a), 'a');

// 抛出异常
$Reflection = new ReflectionProperty(get_class($a), 'foo');

?>

获取您传入的对象的类是隐含的,因为检查定义的属性是此类的目的。

在您的示例中,$a->foo 是一个动态成员 - 它没有定义为类的成员,因此没有定义的类引用、行号、默认值等 - 这意味着,没有任何内容可以反映。

显然,这个非常有用的库可以使用一些真正的文档...
Nanhe Kumar
10 年前
<?php
// 序列化静态属性(类变量)

class Student {

private
$members = array();
protected
$name;
public static
$noOfStudent;

public function
__construct($name = 'Nanhe Kumar') {
$this->name = $name;
Student::$noOfStudent++;
}

public function
__sleep() {
$vars = get_class_vars(get_class($this));
foreach (
$vars as $key => $val) {
if (!empty(
$val))
$this->members[$key] = $val;
}
return
array_keys(get_object_vars($this));
}

public function
__wakeup() {
foreach (
$this->members as $key => $val) {
$prop = new ReflectionProperty(get_class($this), $key);
$prop->setValue(get_class($this), $val);
}
$this->members = array();
}

public function
getTotalStudent() {
return
self::$noOfStudent;
}

}

$so1 = new Student();
$so2 = new Student();
$serialized = serialize($so1);
print_r($serialized); //O:7:"Student":2:{s:16:"Studentmembers";a:1:{s:11:"noOfStudent";i:2;}s:7:"*name";s:11:"Nanhe Kumar";}
$unserialized = unserialize($serialized);
print_r($unserialized); //Student Object ( [members:Student:private] => Array ( ) [name:protected] => Nanhe Kumar )
echo Student::$noOfStudent; //2
?>
To Top