Re: [PHP] Converting a binary integer to a number

2001-05-07 Thread Siegfried Kettlitz
Thanx, I think that will save some time. > Use unpack(): > > // Grab as many signed 32-bit integers as possible > $array = unpack ('l*', $data); > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PHP] Converting a binary integer to a number

2001-05-07 Thread Zak Greant
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