-
-
Save mariapaulinar/79bcca88a598dc4396c59a63488f389e to your computer and use it in GitHub Desktop.
PHP CLI progress bar in 5 lines of code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function progress_bar($done, $total, $info="", $width=50) { | |
$perc = round(($done * 100) / $total); | |
$bar = round(($width * $perc) / 100); | |
return sprintf("%s%%[%s>%s]%s\r", $perc, str_repeat("=", $bar), str_repeat(" ", $width-$bar), $info); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment