如何在php中从字节转换为float?像在Java中一样
int i = (byte3 & 0xff) << 24 | (byte2 & 0xff) << 16 | (byte1 & 0xff) << 8 | byte0 & 0xff;
Float.intBitsToFloat(i);
答案 0 :(得分:5)
可能有一种更直接的方式,但是你走了:
<?php
var_dump(unpack('f', pack('i', 1059760811)));
?>
当然,这取决于机器,但我不知道任何运行PHP的机器不使用IEEE 754浮点数。
答案 1 :(得分:0)
我不认为php有字节,是吗? 为变量分配数字时,您将获得一个数字类型为
的变量$a = 10; // integer
$f = 1.0; // double
$b = $a + $f; // $b is double
答案 2 :(得分:0)