brick/reflection
Composer 安装命令:
composer require brick/reflection
包简介
Low-level tools to extend PHP reflection capabilities
关键字:
README 文档
README
A collection of low-level tools to extend PHP reflection capabilities.
Installation
This library is installable via Composer:
composer require brick/reflection
Requirements
This library requires PHP 8.1 or later.
Project status & release process
This library is still under development.
The current releases are numbered 0.x.y. When a non-breaking change is introduced (adding new methods, optimizing
existing code, etc.), y is incremented.
When a breaking change is introduced, a new 0.x version cycle is always started.
It is therefore safe to lock your project to a given release cycle, such as 0.7.*.
If you need to upgrade to a newer release cycle, check the release history
for a list of changes introduced by each further 0.x.0 version.
Documentation
Here is a brief overview of the classes in this package.
ReflectionTools
This class is a collection of tools that build on top of PHP's reflection classes to provide additional functionality.
Just create an instance of ReflectionTools and you can use the following methods:
getClassMethods()returns reflections of all the non-static methods that make up one object, including private methods of parent classes.getClassProperties()returns reflections of all the non-static properties that make up one object, including private properties of parent classes.getClassHierarchy()returns the hierarchy of classes, starting from the first ancestor and ending with the class itself.getReflectionFunction()returns a reflection object for any callable.getFunctionName()returns a meaningful name for the given function, including the class name if it is a method.exportFunctionSignature()exports a function's signature, such aspublic function foo(string $bar): int.
ImportResolver
ImportResolver resolves class names to their fully qualified name, taking into account the current namespace and use statements of the PHP file they were used in.
This is particularly useful for parsing annotations such as @param ClassName $foo, where the FQCN of ClassName depends on the file it appears in, for example:
<?php namespace App; use Foo\Bar; use Foo\Bar\Baz as Alias; class Test { }
You can create a resolver by passing any reflection object belonging to the PHP file as a context: a ReflectionClass, a ReflectionClassConstant, a ReflectionProperty, a ReflectionMethod or a ReflectionParameter:
use Brick\Reflection\ImportResolver; $class = new ReflectionClass(App\Test::class); $resolver = new ImportResolver($class); echo $resolver->resolve('\Some\FQCN\Class'); // Some\FQCN\Class echo $resolver->resolve('Something'); // App\Something echo $resolver->resolve('Something\Else'); // App\Something\Else echo $resolver->resolve('Bar'); // Foo\Bar echo $resolver->resolve('Bar\tender'); // Foo\Bar\tender echo $resolver->resolve('Alias'); // Foo\Bar\Baz echo $resolver->resolve('Alias\ooka'); // Foo\Bar\Baz\ooka
brick/reflection 适用场景与选型建议
brick/reflection 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 277.41k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2014 年 09 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「reflection」 「brick」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 brick/reflection 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 brick/reflection 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 brick/reflection 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Library emulating the PHP internal reflection using just the tokenized source code.
Parse use statements for a reflection object
Date and time library
An attempt at a standard library for PHP
Date and time library
Generate UML class diagrams by reflection for your PHP projects
统计信息
- 总下载量: 277.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 32
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-09-12
