Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 1f521c69e3f78d9a9296e3383e00f20f > files > 4

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

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

print "Showing elapsed time, and using ANSI codes:\n";
$bar = new Console_ProgressBar('- %fraction% [%bar%] %percent% Elapsed Time: %elapsed%', 
	'=>', '-', 70, 10, 
	array('ansi_terminal' => true, 'ansi_clear' => true));
for ($i = 0; $i <= 10; $i++) {
	$bar->update($i);
	usleep(30000);
}
print "\n";