makinacorpus/drush-progressbar
最新稳定版本:1.0.0
Composer 安装命令:
composer require makinacorpus/drush-progressbar
包简介
Simple progress bar API for Drush
README 文档
README
Usage
Given that:
- you have
$totalwhich is the total number of items to process; - and
$doneis the item count processed so far;
you may do:
$total = some_count(); $bar = \DrushProgressBar::create(); $bar->start(); $done = 0; foreach ($items as $item) { process_item($item); // Note that here, you could also change the total (yes you can). $bar->setProgress($total, ++$done); } $bar->end();
统计信息
- 总下载量: 1.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2
- 更新时间: 2016-06-02