appserver-io/collections
Composer 安装命令:
composer require appserver-io/collections
包简介
Package that provides basic PHP collections and utilities.
README 文档
README
Introduction
This package provides a generic collection library.
The library is based on the SPL extension of PHP5 and uses the introduced iterators. The library also provides, beside the most used collection types, interfaces and exceptions.
Issues
In order to bundle our efforts we would like to collect all issues regarding this package in the main project repository's issue tracker.
Please reference the originating repository as the first element of the issue title e.g.:
[appserver-io/<ORIGINATING_REPO>] A issue I am having
Usage
The following examples will give you a short introduction how you can use the classes provided by this library.
ArrayList
An ArrayList will provide a container that can store items of different data types. With the provided methods, elements can be added, returned oder deleted. The ArrayList is unsorted and has an ongoing integer index that starts with 0.
// initialize a new ArrayList object $list = new ArrayList(); // add several values $list->add(new Integer(1)); $list->add(new Integer(2)); foreach($list as $key => $item) { echo "Found item with key " . $key . " value " . $item->__toString() . PHP_EOL; } // produces the following output Found item with key 0 and value 1 Found item with key 1 and value 2
HashMap
A HashMap will provide a container that can store items of different data types. With the provided methods, elements can be added, returned oder deleted. The HashMap is unsorted like an ArrayList and all simple data types are supported as index.
// initialize a new HashMap object $map = new HashMap(); // add several values $map->add("number", new Integer(1)); $map->add("string", new String("foo")); foreach($list as $key => $item) { echo "Found item with key " . $key . " and value " . $item->__toString() . PHP_EOL; } // produces the following output Found item with key number and value 1 Found item with key string and value foo
Dictionary
A Dictionary, like an ArrayList or a HashMap, will provide a container that can store items of different data types. With the provided methods, elements can be added, returned oder deleted. The Dictionary is unsorted like an ArrayList. But in opposite to an ArrayList or a HashMap, between simple data types, also objects are allowed as index.
// initialize a new Dictionary object $dictionary = new Dictionary(); // add several values $dictionary->add(new Integer(1), new Integer(12)); $dictionary->add(new String("foo"), new String("foo")); foreach($dictionary as $key => $item) { echo "Found item with key " . $key->__toString() . " and value " . $item->__toString() . PHP_EOL; } // produces the following output Found item with key 1 and value foo Found item with key foo and value 12
TreeMap
The usage of a TreeMap is very similar to a HashMap. The main difference is, that the items are either sorted ascending, or by the Predicate passed to the constructor.
// initialize a new TreeMap object $map = new TreeMap(); // add several values $map->add(2, new Integer(12)); $map->add(1, new String("foo")); foreach($map as $key => $item) { echo "Found item with key " . $key . " and value " . $item->__toString() . PHP_EOL; } // produces the following output Found item with key 1 and value foo Found item with key 2 and value 12
The next example gives you an example implementation for using a TreeMap, sorted with a Comparator.
/** * A class TestComparator to sort TreeMap by value. */ class TestComparator implements Comparator { public function compare($object1, $object2) { if ($object1->intValue() < $object2->intValue()) { return -1; } if ($object1->intValue() > $object2->intValue()) { return 1; } if ($object1->intValue() == $object2->intValue()) { return 0; } } } // initialize a new TreeMap object and pass the TestComparator to the constructor $map = new TreeMap(new TestComparator()); // add several values $map->add(1, new Integer(14)); $map->add(2, new Integer(13)); $map->add(3, new Integer(15)); foreach($map as $key => $item) { echo "Found item with key " . $key . " and value " . $item->__toString() . PHP_EOL; } // produces the following output Found item with key 2 and value 13 Found item with key 1 and value 14 Found item with key 3 and value 15
External Links
- Documentation at appserver.io
appserver-io/collections 适用场景与选型建议
appserver-io/collections 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11.81k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2014 年 11 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「collection arraylist map tree sorted set dictionary comparator predicate」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 appserver-io/collections 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 appserver-io/collections 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 appserver-io/collections 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Maps in minutes. Powered by the Google Maps API.
Easily provide front-end sorting controls for SilverStripe lists
Yii2 map input widget. Allows you to select geographcal coordinates via a human-friendly inteface.
This package provides type-safe extension of the laravel collection, forcing a single type of object.
SilverStripe database field that allows saving arbitrary data in a single db field using serialization
Traits to build collections of specific objects
统计信息
- 总下载量: 11.81k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 25
- 依赖项目数: 7
- 推荐数: 0
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2014-11-21