|=
is to |
as +=
is to +
; that is, $a |= $b;
is the same as $a = $a | $b;
. The |
operator is the bitwise OR operator.
Or-Equals. Similar to saying $var += 2, or $var = $var + 2. In this case, it's $showPlayer = $showPlayer | isset....
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With