RE: [PHP] Hex operations

2002-06-20 Thread Martin Towell
looks like it's trying to treat $cap1 as a decimal number, and not a hex number have a look at this: for ($cap = 0; $cap 64; $cap++) { $cap1 = dechex($cap); $bit = ($cap1 | 0x01); echo $cap - $cap1 - $bit\n; } and you'll see what I mean... -Original Message- From: Frank S.

RE: [PHP] Hex operations

2002-06-20 Thread Frank S. Kicenko
I think the goofy variable is getting truncated (3FFF | 4) is returning 7 (4FFF | 4) is returning 8 -Original Message- From: Martin Towell [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 6:37 PM To: Frank S. Kicenko; [EMAIL PROTECTED] Subject: RE: [PHP] Hex operations

RE: [PHP] Hex operations

2002-06-20 Thread Frank S. Kicenko
sorry... (4FFF | 4) is returning 4 -Original Message- From: Frank S. Kicenko Sent: Thursday, June 20, 2002 7:34 PM To: Martin Towell; [EMAIL PROTECTED] Subject: RE: [PHP] Hex operations I think the goofy variable is getting truncated (3FFF | 4) is returning 7 (4FFF | 4