Posted by Ewoud Dronkert on 10/13/05 14:30
nooy66@gmail.com wrote:
> I need to read value type double form my binary file.
> When i use Hex Workshop software read my binary file.
> i have data 8 bytes :
>
> hex = 3131 3131 3131 3140
> string = 1111111@
> Float = 2.5784852e-009
> Double = 17.192157
print_r(unpack('d', '1111111@'));
does it for me. See http://php.net/unpack
--
E. Dronkert
Navigation:
[Reply to this message]
|