I know I can use number_format, but is there a way to represent base32 numbers? For example, hex can be represented with 0x... and octal can be represented with a 0 in the front. Is there anything to represent base32 numbers in php?
Does php have a built in coversion to base32 values?
5.9k views Asked by Daniel At
3
There are 3 answers
0
On
number_format()
cannot be used to 'represent' a base 32 number, I wonder if you mean base_convert
(http://php.net/base_convert) to move between bases, e.g.
echo(base_convert('FF', 16, 10));
As for defining them with a special prefix, as far as I'm aware PHP only supports 0 and 0x for octal/hexadecimal.
Use the built-in function base_convert. For example: