convenient / tiny-progress-bar
An itty bitty, super simple, 2 line progress/loading bar for PHP command line applications.
0.1.0
2015-05-07 12:45 UTC
Requires (Dev)
- phpunit/phpunit: ~4.4
This package is auto-updated.
Last update: 2024-10-14 01:00:57 UTC
README
An itty bitty, super simple, 2 line progress bar for PHP command line applications.
Takes two parameters
- The size of your
Traversable
or - if you're lazy - theTraversable
itself. - How many characters across you want your progress bar to be.
It's hosted on packagist, so just add convenient/tiny-progress-bar: "~0.1"
to your composer.json
:)
Example
Passing the size of the Traversable
<?php
require_once '/vendor/autoload.php';
$progressBar = new \Convenient\ProgressPrinter(500);
for ($i=0; $i<500; $i++) {
$progressBar->printProgress();
}
Passing in the Traversable
<?php
require_once '/vendor/autoload.php';
$arr = new SplFixedArray(500);
$progressBar = new \Convenient\ProgressPrinter($arr);
foreach ($arr as $val) {
$progressBar->printProgress();
}
Change the size of the progress bar
<?php
require_once '/vendor/autoload.php';
$progressBar = new \Convenient\ProgressPrinter(500, 100);
for ($i=0; $i<500; $i++) {
$progressBar->printProgress();
}