Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 1f521c69e3f78d9a9296e3383e00f20f > files > 5

php-pear-Console-ProgressBar-0.5.2-0.6.beta.fc14.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";