Is there a way to take any number, from say, 1 to 40000 and generate an 8 character hash?
I was thinking of using base_convert but couldn\'t figure out
base_convert
$hash = substr(hash("sha256",$num), 0, 8);