DEV Community

Discussion on: Best Practice - Check if property exist and assign

Collapse
 
mlueckl profile image
Michael Lueckl

PHP7's null coalesce operator is awesome, thank you for pointing this out.
I like the other options more for the purpose of my question but this is a great "upgrade" from the inline if.

I do like Alex Cioroianu suggestion as I don't really need to assign a value if it does not exist but this is still helpful if I need to assign some fallback value or similar.

Cheers