Explain php if statment

fasito

New Member
Can someone please explain in detail what these if statements are doing?What does the three === signs to in the first one, and What does the single & in the second mean?thanks\[code\]$aProfile = getProfileInfo($iId); if($aProfile === false) return false; if(!((int)$aProfile['Role'] & $iRole)) return false;\[/code\]
 
Back
Top