To simply enlist all methods and properties of an object simply write:
<?php ReflectionObject::export($yourObject); ?>
,which will cause an var_export-like output.
(PHP 5, PHP 7, PHP 8)
ReflectionObject 类报告了 object 的相关信息。
$object
, callable $initializer
, 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.