/opt/alt/php55/usr/share/doc/pear/ConsoleTools/docs
Edit: /opt/alt/php55/usr/share/doc/pear/ConsoleTools/docs/example_progressbar.php (3442B)
formats->red->color = "red";
// Create progress bar itself
$progress = new ezcConsoleProgressbar( $out, 100, array( 'step' => 5 ) );
$progress->options->emptyChar = '-';
$progress->options->progressChar = $out->formatText('>', "red");
$progress->options->formatString = "Uploading file : %act%/%max% kb [%bar%]";
// Perform actions
$i = 0;
while( $i++ < 20 )
{
// Do whatever you want to indicate progress for
usleep( mt_rand( 20000, 2000000 ) );
// Advance the progressbar by one step ( uploading 5k per run )
$progress->advance();
}
// Finish progress bar and jump to next line.
$progress->finish();
$out->outputText( "Successfully uploaded .\n", 'success' );
/*
OUTPUT: (sequential, will be printed into 1 line and updated in reallife)
Uploading file : 5/100 kb [++#----------------------------------------------]
Uploading file : 10/100 kb [+++++#-------------------------------------------]
Uploading file : 15/100 kb [++++++++#----------------------------------------]
Uploading file : 20/100 kb [+++++++++++#-------------------------------------]
Uploading file : 25/100 kb [++++++++++++++#----------------------------------]
Uploading file : 30/100 kb [+++++++++++++++++#-------------------------------]
Uploading file : 35/100 kb [++++++++++++++++++++#----------------------------]
Uploading file : 40/100 kb [+++++++++++++++++++++++#-------------------------]
Uploading file : 45/100 kb [++++++++++++++++++++++++++#----------------------]
Uploading file : 50/100 kb [+++++++++++++++++++++++++++++#-------------------]
Uploading file : 55/100 kb [++++++++++++++++++++++++++++++++#----------------]
Uploading file : 60/100 kb [+++++++++++++++++++++++++++++++++++#-------------]
Uploading file : 65/100 kb [++++++++++++++++++++++++++++++++++++++#----------]
Uploading file : 70/100 kb [+++++++++++++++++++++++++++++++++++++++++#-------]
Uploading file : 75/100 kb [++++++++++++++++++++++++++++++++++++++++++++#----]
Uploading file : 80/100 kb [+++++++++++++++++++++++++++++++++++++++++++++++#-]
Uploading file : 85/100 kb [++++++++++++++++++++++++++++++++++++++++++++++++#]
Uploading file : 90/100 kb [++++++++++++++++++++++++++++++++++++++++++++++++#]
Uploading file : 95/100 kb [++++++++++++++++++++++++++++++++++++++++++++++++#]
Uploading file : 100/100 kb [++++++++++++++++++++++++++++++++++++++++++++++++#]
Uploading file : 100/100 kb [++++++++++++++++++++++++++++++++++++++++++++++++#]Successfully uploaded .
*/
?>