Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f5bdfacbd5622c4b9d663f8854d91333 > files > 5

php-pear-Console_ProgressBar-0.5.2beta-6.mga4.noarch.rpm

<?php
require_once 'Console/ProgressBar.php';

print "Showing an estimate for the remaining time:\n";
$bar = new Console_ProgressBar('- %fraction% [%bar%] %percent% ETA: %estimate%', '=>', '-', 78, 345);
for ($i = 0; $i <= 345; $i++) {
    $bar->update($i);
    usleep(40000);
}
print "\n";