Skip to content

Instantly share code, notes, and snippets.

View komenancs's full-sized avatar

komenansc komenancs

View GitHub Profile
@mauro-baptista
mauro-baptista / NumberFormat.php
Last active May 8, 2023 00:22
Easily readable numbers
<?php
/**
* Numbers more readable for humans
*
* It intends to change numbers as 1000 as 1K or 1200000 as 1.2M
*
* This code is heavly base in this one: https://gist.github.com/RadGH/84edff0cc81e6326029c
*
* How to use \NumberFormat::readable(1000);
*/