Null coalescing operator is a new feature added to PHP7. It strictly checks for null or non-existent variable or index. This function is used to replace the ternary operation in conjunction with isset() function and it also returns its first operand if it exists and is not null. Otherwise, it returns the second operand.