The null coalescing assignment operator is a shorthand for null coalescing operations.
Let’s take a example code
1 |
$data['date'] = $data['date'] ?? new DateTime(); |
So, instead of writing the previous code, we could write the following:
1 |
$data['date'] ??= new DateTime(); |
If the value of the left-hand parameter is null, then the value of the right-hand parameter is used.
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.
I am Arjun from Hyderabad (India). I have been working as a software engineer from the last 7+ years, and it is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
Subscribe
Login
0 Comments