Patch fixedLogicalOperatorsdocs for Variables related Bug #74115
Patch version 2017-02-17 03:40 UTC
Return to Bug #74115 |
Download this patch
Patch Revisions:
Developer: nick@lampnick.com
--- http://php.net/manual/en/language.operators.logical.php
+++ http://php.net/manual/en/language.operators.logical.php
- $a and $b And TRUE if both $a and $b are TRUE.
+ $a and $b And Bits that are set in both $a and $b are set.
- $a or $b Or TRUE if either $a or $b is TRUE.
+ $a or $b Or Bits that are set in either $a or $b are set.
|