bytes convert to float (php)

后端 未结 3 689
栀梦
栀梦 2020-12-04 00:46

How can I convert from bytes to float in php? Like in Java

int i = (byte3 & 0xff) << 24 | (byte2 & 0xff) << 16 | (byte1 & 0xff) <&         


        
3条回答
  •  独厮守ぢ
    2020-12-04 01:30

    There may be a more direct way, but here you go:

    
    

    This is, of course, machine dependent, but I don't know of any machine running PHP that doesn't use IEEE 754 floats.

提交回复
热议问题