[PHP-DEV] Bug #1088 Updated: occasional failure of bitwise & From: Bug Database (php-dev <email protected>)
Date: 02/05/99

ID: 1088
Updated by: zeev
Reported By: jda <email protected>
Status: Closed
Bug Type: Misbehaving function
Assigned To:
Comments:

Either something really weird about your Solaris 2.6 box, or you
haven't been tracing the value of $z properly. When $z equals
4, the if expression evaluates to 4 == (0b100 & 0b111011), or
4 == 0, which is false, and thus the statements inside the if
block aren't executed. The value of $z at the end of the script
is 4, and $thiscookie is 59+4 or 63.
I've tested this both under Solaris 2.5.1 and Linux.

Full Bug description available at: http://ca.php.net/bugs.php3?id=1088

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>