Skip to content

Instantly share code, notes, and snippets.

View ScottYates's full-sized avatar

Scott Yates ScottYates

View GitHub Profile
@ScottYates
ScottYates / progressBar.php
Last active May 16, 2018 17:52 — forked from marcojetson/progressBar.php
Simple and customisable command line progress bar in PHP
<?php
/**
* Create a progress bar
*
* @param int $total Max amount of items
* @param int $width Width in characters of the progress bar (defaults to 100)
* @param string $template Template to use,
* Available placeholders are %finished, %unfinished, %percent, %eta, %current and %total
* @return callable A function that renders the bar and takes the current value as only argument
*