License under NYSL
function shorty($number){
$str="0123456789-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
$len=strlen($str);
$res ="";
$tn=$number;
do{
$div = intdiv($tn,$len);
$odd = $tn % $len;
$res .= $str[$odd];
$tn = $div;
}while($div != 0);
return $res;
}