Use unpack():

// Grab as many signed 32-bit integers as possible
$array = unpack ('l*', $data);


--zak

----- Original Message -----
From: "Siegfried Kettlitz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 07, 2001 12:36 PM
Subject: [PHP] Converting a binary integer to a number


> I have binary data (ie: 0x7b c8 15 0c ) and want to convert it into a
32Bit
> integer (here: 123456789012).
>
> Currently I use this (intel-little-endian):
> $integer = hexdec( bin2hex( strrev( readpos( $fd,$position,4 ) ) ) );
> readpos reads 4 bytes from a file
>
> Is there a better, faster or easier way to do the same thing?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to