承接 bolt/collection 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

bolt/collection

Composer 安装命令:

composer require bolt/collection

包简介

Object Orientated implementations of various collections

README 文档

README

travis codecov

This library provides objects and functionality to help with groups of items and data sets.

Check out the API documentation.

Bag and MutableBag

These are object-oriented implementations of arrays.

The goal of these classes:

  • Provide functionality on par with built-in array methods
  • Provide useful functionality lacking from built-in array methods
  • Provide a fluent-like experience
  • Make implementing code more readable

Examples

$arr = [
    'debug' => true,
    'color' => 'blue',
    'db' => [
        'driver' => 'sqlite',
    ],
];

$bag = Bag::from($arr)
    ->defaults([
        'debug' => false,
        'color' => 'green',
    ])
    ->replace([
        'color' => 'red',
    ])
;
$bag->get('debug'); // true
$bag->getPath('db/driver'); // "sqlite"
$bag->keys()->join(', '); // "debug, color, db"
$bag->isAssociative(); // true
$colors = MutableBag::of('red', 'blue', 'yellow')
    ->merge(['green', 'orange'])
;
$colors->isIndexed(); // true
$colors->indexOf('yellow'); // 2
$colors[2]; // "yellow"

$colors->prepend('purple');
$colors[] = 'pink';

$colors->first(); // "purple"
$colors->last(); // "pink"

$colors->shuffle()->first(); // one of the colors

$colors->chunk(2); // Bags represented as arrays:
// [ ['purple', 'red'], ['blue', 'yellow'], ['green, 'orange'], ['pink'] ]

$colors->removeFirst(); // "purple"
$colors->removeFirst(); // "red"

These examples only cover half of the functionality. See the API documentation for more.

All methods accepting a collection will accept other Bags, arrays, stdClass, and Traversable objects. This makes it very easy work with any collection-like object.

Hasn't this been done already?

Obviously others think PHP arrays suck as well and have attempted to resolve this.

Symfony's ParameterBag is a good basic map (associative arrays) container but is lacking when it comes to mutating the items around and working with lists.

Doctrine's ArrayCollection is also another, more robust, option. It works well for maps and lists, but still has limited functionality due to needing to interface with a database collection. It also has some annoyances, like getKeys() returns an array instead of another ArrayCollection instance.

统计信息

  • 总下载量: 119.34k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 1
  • 依赖项目数: 5
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-04-13

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固