backbee/utils 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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.

Build Status Scrutinizer Code Quality Code Coverage

  1. 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
  1. 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"
  1. 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()

统计信息

  • 总下载量: 15.39k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2014-12-29