zobzn/batcher

执行批量操作

0.1.0 2016-07-24 15:03 UTC

This package is not auto-updated.

Last update: 2024-09-26 02:10:59 UTC


README

Build Status Software License

执行批量操作

安装

composer require zobzn/batcher

基本用法

require_once __DIR__ . '/vendor/autoload.php';

$batcher = new \Zobzn\Batcher(30, function (array $items) {
    var_export($items);
});

for ($i = 0; $i < 100; $i++) {
    $batcher->add($i);
}

$batcher->finish();