I have a number in base 10. Is there anyway to translate it to a base 62?
Example:
echo convert(12324324); // returns Yg3 (fantasy example here)
If you have gmp extension:
gmp_strval(gmp_init($x, 10), 62)