I just found this in some code and I can\'t find anything on the web or php manual. Most likely since its an irregular character.
Here is one of the lines that uses
|= is to | as += is to +; that is, $a |= $b; is the same as $a = $a | $b;. The | operator is the bitwise OR operator.
|=
|
+=
+
$a |= $b;
$a = $a | $b;
Or-Equals. Similar to saying $var += 2, or $var = $var + 2. In this case, it's $showPlayer = $showPlayer | isset....
$showPlayer = $showPlayer | isset....