PHP 7 operators: null coalescing (??) and space ship (<=>)

There are two changes regarding PHP 7, concerning two new operators that have been very useful to me during my years in PHP. The “null coalescing” Operator: ?? In an expression it will return the left operand if this is not NULL, if this condition does not occur the right […]

Read More…