Skip to content

Instantly share code, notes, and snippets.

@linxlad
Created July 3, 2015 10:16
Show Gist options
  • Save linxlad/50c9977afc4ee324277a to your computer and use it in GitHub Desktop.
Save linxlad/50c9977afc4ee324277a to your computer and use it in GitHub Desktop.
CLI progress bar
<?php
printf("\r" . str_repeat("=", round(($key / $count) * 100)) . "> %d%% (%s/%s)", round(($key / $count) * 100), $key, $count);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment