25 lines
439 B
PHP
25 lines
439 B
PHP
<?php
|
|
|
|
use Siteworx\ProgressBar\CliProgressBar;
|
|
|
|
require_once('./../vendor/autoload.php');
|
|
|
|
$bar = new CliProgressBar(48);
|
|
$bar->setBarLength(5);
|
|
$bar->display();
|
|
|
|
$bar->setColorToRed();
|
|
|
|
while($bar->getCurrentstep() < $bar->getSteps()) {
|
|
usleep(50000);
|
|
$bar->progress();
|
|
|
|
if ($bar->getCurrentstep() >= ($bar->getSteps() / 2)) {
|
|
$bar->setColorToYellow();
|
|
}
|
|
}
|
|
|
|
$bar->setColorToGreen();
|
|
$bar->display();
|
|
|
|
$bar->end(); |