Sophie

Sophie

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

php-pear-Console-ProgressBar-0.5.2-0.6.beta.fc14.noarch.rpm

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

print "This will display a very simple bar:\n";
$bar = new Console_ProgressBar('%bar%', '=', ' ', 76, 3);
for ($i = 0; $i <= 3; $i++) {
    $bar->update($i);
    sleep(1);
}
print "\n";