PHP code example of nowise / uup-progressbar

1. Go to this page and download the library: Download nowise/uup-progressbar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nowise / uup-progressbar example snippets


$progress = new ProgressBar();

for ($i = 1; $i <= 100; ++$i) {
    $progress->addIncrement($i);
}