Skip to content

Instantly share code, notes, and snippets.

@kubaceg
Created July 16, 2015 05:17
Show Gist options
  • Save kubaceg/96fb4881bfa816239af6 to your computer and use it in GitHub Desktop.
Save kubaceg/96fb4881bfa816239af6 to your computer and use it in GitHub Desktop.
Simple one function PHP progress bar
/**
* @param int $done
* @param int $total
*/
function progress($done, $total)
{
$totalSeg = 20;
$seq = intval(($done / $total) * $totalSeg);
$str = "[" . str_repeat('=', $seq) . str_repeat(' ', $totalSeg - $seq) . "] $done/$total";
echo "\r$str";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment