Ok, this may have already been posted to the list already, but the
archives don't seem to like the & and && characters.
I'm running into some code that looks like this:
<snip>
Define('INPUT', 2);
<snip>
if($search->level & INPUT) $tmp.= $search->input();
Ok, what's the & mean?
As far as I could tell from the very little documentation I was able to
scrape up on google, & is a bit-by-bit operator. Thus, if either INPUT
or $search->level, we get TRUE... If that's the case, what's the point
of using it instead of || ?
Or, do I just totally not understand the point of this. Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php