Skip to content

Instantly share code, notes, and snippets.

@zanix
zanix / php_cli_progressbar.php
Last active February 19, 2019 13:10
PHP CLI Progress Bar
<?php
/**
* This function will output a progress bar when using PHP in CLI
* Call progressBar() for each iteration of a loop
*
* http://ascii-table.com/ansi-escape-sequences.php
*/
function progressBar($current=0, $total=100, $label='', $size=50) {
// Don't have to call $current=0
// Bar status is stored between calls