Server IP : 66.29.132.122 / Your IP : 3.137.177.146 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/proc/thread-self/root/opt/alt/php53/usr/share/doc/pear/ConsoleTools/docs/ |
Upload File : |
<?php /** * Example for the usage of ezcConsoleStatusbar class. * * @package ConsoleTools * @version 1.6.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ require_once 'Base/src/base.php'; /** * Autoload ezc classes * * @param string $className */ function __autoload( $className ) { ezcBase::autoload( $className ); } $out = new ezcConsoleOutput(); // Create status bar itself $status = new ezcConsoleStatusbar( $out ); // Perform actions $i = 0; while( $i++ < 20 ) { // Do whatever you want to indicate progress for usleep( mt_rand( 20000, 2000000 ) ); // Indicate success or failure $status->add( (bool)mt_rand( 0, 1 ) ); } $out->outputLine(); // Print statistics $out->outputLine( $status->getSuccessCount() . ' operations succeeded, ' . $status->getFailureCount() . ' failed.' ); /* OUTPUT: +-++++-++++-++-+--+- 13 operations succeeded, 7 failed. */ ?>