masterklavi / phpprogress
Here is a PHP function that shows progress in nice view in command-line interface (CLI)
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:package
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-06-18 03:21:09 UTC
README
Using it you can give nice progress view in command-line interface (CLI)
Example
use masterklavi\phpprogress\Progress; // init progress of 500 tasks $progress = new Progress(500); for ($i = 0; $i < 500; $i++) { // some task usleep(rand(0, 50000)); // mark that a task was completed $progress->show(); }
Requirements
- PHP version 5.4.0 or higher
Installation
Using Composer
Get the package:
$ composer require masterklavi/phpprogress
Manual Installation
Clone git repository:
$ git clone https://github.com/masterklavi/phpprogress.git
or download the package at https://github.com/masterklavi/phpprogress/archive/master.zip
Small Documentation
Progress::__construct($max)
where$max
- max value (count of tasks)Progress::show($offset_or_value = 1, $progress_type = Progress::TYPE_OFFSET, $status = Progress::STATUS_OK)
where$offset_or_value
- offset (when type=OFFSET) or value (when type=VALUE)$progress_type
can beProgress::TYPE_OFFSET
orProgress::TYPE_VALUE
$status
can beProgress::STATUS_OK
,Progress::STATUS_SKIP
orProgress::STATUS_FAIL
$progress = new Progress(10); $progress->show(); // offset = 1, so value = 1 $progress->show(2); // offset = 2, so value = 3 $progress->show(6, Progress::TYPE_VALUE); // value = 6 $progress->show(4); // offset = 2, so value = 10