(PHP 5, PHP 7, PHP 8)
ReflectionObject 类报告了 object 的相关信息。
$name): ReflectionClassConstant |false $name, mixed &$def_value = ?): mixed $object, callable $initializer, int $options = 0): void $object, callable $factory, int $options = 0): void | 版本 | 说明 |
|---|---|
| 8.0.0 | 已移除 ReflectionObject::export() 。 |
To simply enlist all methods and properties of an object simply write:
<?php ReflectionObject::export($yourObject); ?>
,which will cause an var_export-like output.