How can I test binary AND's on an integer? I imagine it's quite simple, but try searching the PHP website or Google for "and" haha.
This is what i would like to happen:
if (6 and 2) echo 'yep'; // this would echo 'yep'
if (5 and 2) echo 'yep'; // this would NOT echo 'yep'