mundanity / collection
一个基于PHP的简单集合。
v1.0.0
2018-02-07 14:17 UTC
Requires
- php: ~5.6 || ~7.1
Requires (Dev)
- phpunit/phpunit: ~5.2.0
This package is not auto-updated.
Last update: 2024-09-29 05:41:49 UTC
README
一个基于PHP的简单集合。
使用方法
对于基本使用,可以使用提供的 Collection 或 KeyedCollection 基类。每个类都有一个可变对应类。
<?php $collection = new Collection([1, 2, 3]); $collection->has(2); // true $mutable = MutableCollection::fromCollection($collection); $mutable->remove(2); $mutable->has(2); // false