Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to implement the logical connective AND, and was wondering if this shorthand notation is allowed:

$hasPermissions &= user_hasAppPermission($user_id, $permission);

Or do i have to do this:

$hasPermissions = $hasPermissions && user_hasAppPermission($user_id, $permission);
share|improve this question
It could work, but strictly by accident. If your variable was a true boolean before and the function returns a true boolean, then the implicit typecasting will lead to the right result. But really, you shouldn't. – mario Jan 10 '12 at 22:49

3 Answers

up vote 5 down vote accepted

The shorthand &= is a bitwise assignment operation, which is not equivalent to your second statement. That would be the same as doing (note the single ampersand):

$hasPermissions = $hasPermissions & user_hasAppPermission($user_id, $permission);

From what I can see, your "long" statement seems fine as is.

share|improve this answer
Thanks, Tim. That is exactly what i am looking for. – James Corr Jan 11 '12 at 18:55

In PHP, these logical operations are available:

AND

$val1 && $val2
$val1 and $val2

OR

$val1 || $val2
$val1 or $val2

NOT

! $val

XOR

$val1 xor $val2

Additionally, have a look at this page. The two operators && and || have a different precedence as and and or.

Thus, your second option is the way to go:

$hasPermissions = $hasPermissions && user_hasAppPermission($user_id, $permission);

BTW: I'd propose to always use === to compare for equality. === ensures that the types of its operands are identical and the values are, while == casts values.

share|improve this answer

I would do something like:

$hasPermissions = (($hasPermissions) && (true === user_hasAppPermission($user_id, $permission))) ? true : false;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.