Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 9629e8545c168dce413013617901add1 > files > 5

php-pear-Console_ProgressBar-0.5.2beta-8.mga5.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";