What is a null coalescing operator in PHP7?

devquora
devquora

Posted On: Apr 15, 2024

 

The null coalescing operator is a new feature added to PHP7. It strictly checks for null or non-existent variables or indexes. 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.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions