Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3dd46b1b96bcedc74e1a363a671472b1 > files > 34

ezcomponents-ConsoleTools-1.6.1-3.mga4.noarch.rpm

<?php

require_once 'tutorial_autoload.php';

$output = new ezcConsoleOutput();

$status = new ezcConsoleProgressMonitor( $output, 7 );

$i = 0;
while( $i++ < 7 ) 
{
    usleep( mt_rand( 20000, 2000000 ) );
    $status->addEntry( 'ACTION', "Performed action #{$i}." );
}

$output->outputLine();

?>