+1 vote
in PHP by

what the difference between the 'BITWISE AND' operator and the 'LOGICAL AND' operator?

1 Answer

0 votes
by

$a and $b: TRUE if both $a and $b are TRUE.

$a & $b: Bits that are set in both $a and $b are set.

Related questions

0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
...