在php中将二进制字符串转换为整数
在php中如何将字符串“1010101010”转换为该二进制数表示的整数值?
例如“10”将变为 2,“101”将变为 5
In php how do I convert a string "1010101010" into the integer value represented by this binary number?
eg "10" would go to 2, "101" would go to 5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
bindec()
函数进行转换二进制转十进制:Use
bindec()
function to convert from binary to decimal:尝试使用
bindec()
函数。Try the
bindec()
function.