xenolope/namespacery
最新稳定版本:v0.6
Composer 安装命令:
composer require xenolope/namespacery
包简介
A library to help parse namespaces
README 文档
README
Namespacery is a simple PHP library to help parse namespaces in an easily-accessible way.
Installation
The library can be installed with Composer, by including the following in your composer.json:
{
"require": {
"xenolope/namespacery": "0.*"
}
}
Usage
$resolver = new \Xenolope\Namespacery('Vendor\Package\Group\Class'); // Returns the value of the first namespace segment $resolver->parseSegments()->getFirstSegment(); // Returns the value of the last namespace segment $resolver->parseSegments()->getLastSegment(); // Returns the value of the segment at the given index, or an \OutOfBoundsException if the index doesn't exist $resolver->parseSegments()->getSegment(1); // Returns an array of all segments in the namespace $resolver->parseSegments()->getSegments();
License
Namespacery is released under the MIT License; please see LICENSE for more information.
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-10-25