xtompie / collection
数组包装器
1.0
2024-05-24 19:43 UTC
Requires (Dev)
- phpunit/phpunit: ^10.5
This package is auto-updated.
Last update: 2024-09-24 20:16:15 UTC
README
数组包装器
需求
PHP >= 8.0
安装
使用composer
composer require xtompie/collection
文档
<?php echo Collection::of(['Alice', 'bob', 'Charlie', null]) ->filter(function (?string $name) { return $name !== null; }) ->map(function (string $name) { return ucfirst($name); }) ->implode(', ') ;
检查源代码:Collection