osthafen
Results
1
comments of
osthafen
You could use str_split(): ``` php function getShortenedURLFromID ($integer, $base = ALLOWED_CHARS) { $length = strlen($base); $base = str_split($base); $out = ''; while($integer > $length - 1) { $out =...