krzysztofzylka/reflection

反射辅助工具

1.0.1 2023-12-08 21:04 UTC

This package is auto-updated.

Last update: 2024-09-08 22:29:02 UTC


README

composer require krzysztofzylka/reflection

方法

获取类目录路径

\Krzysztofzylka\Reflection\Reflection::getDirectoryPath($objectOrClass)

获取类的公共属性

\Krzysztofzylka\Reflection\Reflection::getPublicPropertyList($object)

获取类注释

\Krzysztofzylka\Reflection\Reflection::getClassComment($object, 'type (not required)')

获取类方法注释

\Krzysztofzylka\Reflection\Reflection::getClassMethodComment($object, 'method', 'type (not required)')

查找类方法注释

$comments = \Krzysztofzylka\Reflection\Reflection::getClassMethodComment($object, 'method', 'type (not required)')
\Krzysztofzylka\Reflection\Reflection::findClassComment($comments, 'auth')

获取类方法

\Krzysztofzylka\Reflection\Reflection::getClassMethods($objectOrClass)