start(); $i = 0; while ($i++ < 50) { // ... do some wor sleep(1); echo "\r$i \n"; // advances the progress bar 1 unit $progressBar->advance(); // you can also advance the progress bar by more than 1 unit // $progressBar->advance(3); } // ensures that the progress bar is at 100% $progressBar->finish(); echo PHP_EOL;