本文介绍了php是否对base32值有内置的掩盖?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道我可以使用number_format,但是有没有一种方法可以表示base32数字?例如,十六进制可以用0x ...表示,八进制可以用0表示.有什么可以代表php中的base32数字吗?
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?
推荐答案
使用内置函数base_convert.例如:
Use the built-in function base_convert. For example:
// To convert from base 10 to base 32:
echo( base_convert( 12345, 10, 32 ) );
这篇关于php是否对base32值有内置的掩盖?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!