backbee/utils
最新稳定版本:v2.0.1
Composer 安装命令:
composer require backbee/utils
包简介
BackBee tools library for php
README 文档
README
utils library was extracted from BackBee core project. This contains a lot of useful methods to manipulate files, arrays and strings.
- Collection
PHP is one of the more convenient programming language to work with arrays despite the inconsistency of the API.
We have implemented some methods to ease the conversion of arrays in XML and CSV. We also provide some useful method you can need when you work with associative arrays.
Example:
require_once('some_autoloader.php'); use BackBee\Utils\Collection\Collection; $users = [0 => ['name' => 'Charles', 'role' => 'lead developper'], 1 => ['name' => 'Eric', 'role' => 'developper'], ]; echo Collection::toCsv($users, ';'); /** * Will return: * Charles;lead developper * Eric;developper */ $users = ['users' => [ 0 => ['name' => 'Charles', 'role' => 'lead developper'], 1 => ['name' => 'Eric', 'role' => 'developper'], ], ]; echo Collection::toBasicXml($users, ';'); /** * <users> * <0> * <name>Eric</name> * <role>developper</role> * </0> * <1> * <name>Charles</name> * <role>lead developper</role> * </1> * </users> */ $tree = [ 'root' => [ 'child' => [ 'subchild' => 'value', ], ], ]; Collection::has($tree, 'root:child:subchild'); // return true Collection::has($tree, 'root::child::subchild', '::'); // return true Collection::has($tree, 'root:child:foo'); // return false
- Strings
We have added to this library some methods to ease encoding operations. We provide also some useful functions to handle with strings which have particular meanings like file size or path, urls.
Example:
require_once('some_autoloader.php'); use BackBee\Utils\String; /** * Some helpers for encoding operations */ mb_detect_encoding(String::toASCII('BackBee')); // "ASCII" mb_detect_encoding(String::toUTF8('w�ird')); // "UTF-8" /** * Some normalizers for filepaths and urls */ $options = ['extension' => '.txt', 'spacereplace' => '_']; String::toPath('test path', $options)); // "test_path.txt" $options = ['extension' => '.com', 'spacereplace' => '_']; String::urlize('test`s url', $options); // "tests_url.com" /** * Convenients formatters for file size */ String::formatBytes(2000, 3); // "1.953 kb" String::formatBytes(567000, 5); // "553.71094 kb" String::formatBytes(567000); // "553.71 kb" String::formatBytes(5670008902); // "5.28 gb"
- Dir & File
We have added to this library some methods to folders manipulation.
We provide for now 4 methods: copy(), delete(), getContent() and move().
Example:
require_once('some_autoloader.php'); use BackBee\Utils\File\Dir; /** * /src * foo/ * bar.txt * baz.xml */ $fooPath = __DIR__.DIRECTORY_SEPARATOR.'foo'; $fooFooPath = $fooPath.DIRECTORY_SEPARATOR.'foo'; $fooBazPath = $fooPath.DIRECTORY_SEPARATOR.'baz'; Dir::copy($fooPath, $fooFooPath); /** * /src * foo/ * bar.txt * baz.xml * foo/ * bar.txt * baz.xml * baz/ * bar.txt * baz.xml */ Dir::delete($fooFooPath); /** * /src * foo/ * bar.txt * baz.xml * baz/ * bar.txt * baz.xml */ Dir::getContent(__DIR__); /** * ['foo' => * ['bar.txt', 'bar.xml', 'baz' => * ['bar.txt', 'bar.xml'] * ] * ] */ $backbeePath =$fooPath.DIRECTORY_SEPARATOR.'backbee'; Dir::move($fooBazPath, $backbeePath, 000); /** * /src * foo/ * bar.txt * baz.xml * backbee/ * bar.txt * baz.xml */ Dir::getContent($backbeePath); // throw Exception()
backbee/utils 适用场景与选型建议
backbee/utils 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.39k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 12 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「tools」 「utilities」 「string manipulation」 「Array manipulation」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 backbee/utils 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 backbee/utils 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 backbee/utils 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A set of useful PHP classes.
A Laravel package to retrieve data from Google Search Console
Encode integer IDs using a preset or customized symbol set
base62 encoder and decoder also for big numbers with Laravel integration
A collection of enhancements and utilities for the Silverstripe UserForms module
PHP string processing library.
统计信息
- 总下载量: 15.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 24
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2014-12-29