What is a null coalescing operator in PHP7?

Member

by zella , in category: Technology , 3 years ago

What is a null coalescing operator in PHP7?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by bria_metz , 3 years ago

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.