diff --git a/language/operators.xml b/language/operators.xml index 155ef06a93..ee1b9ed1ee 100644 --- a/language/operators.xml +++ b/language/operators.xml @@ -1291,6 +1291,14 @@ Expression: 0 = -4 << 62 Available as of PHP 7. + + $a ?? $b ?? $c + Null Coalesce Operator + + Returns the first operand from left to right that exists and not NULL. + If nothing exsits will return NULL. + +