Perform batch operations
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();