PHP 7.4 – Null coalescing assignment operator
PHP 7.4 introduced a new Zero Coalesce Assignment Operator?? (=). This is used in combination with isset() method to replace the ternary operation. This operator is used for assigning its right-hand operand value to its left-hand operand only if the left-hand operand value is null.
