Many programming languages have a coalesce function (example). PHP, sadly, does not.
What would be a good way to implement one in PHP?
|
Many programming languages have a coalesce function (example). PHP, sadly, does not. What would be a good way to implement one in PHP? |
||||
|
|
|
There is a new operator in php 5.3 which does this:
|
|||||||||||||||||||
|
|
First hit for "php coalesce" on google.
|
|||||||||||||||||||
|
|
I really like the ?: operator. Unfortunately, it is not yet implemented on my production environment. So I use the equivalent of this:
|
|||||||||||||||
|
|
Make sure you identify exactly how you want this function to work with certain types. PHP has a wide variety of type-checking or similar functions, so make sure you know how they work. This is an example comparison of is_null() and empty()
As you can see, empty() returns true for all of these, but is_null() only does so for 2 of them. |
|||
|
|
|
It is worth noting that due to PHP's treatment of uninitalised variables and array indices, any kind of coalesce function is of limited use. I would love to be able to do this:
But this will, in most cases, cause PHP to error with an E_NOTICE. The only safe way to test the existence of a variable before using it is to use it directly in empty() or isset(). The ternary operator suggested by Kevin is the best option if you know that all the options in your coalesce are known to be initialised. |
||||
|
|
|
I'm currently using this, but I wonder if it couldn't be improved with some of the new features in PHP 5.
|
|||
|
|
|
I'm expanding on the answer posted by Ethan Kent. That answer will discard non-null arguments that evaluate to false due to the inner workings of array_filter, which isn't what a
To overcome this, a second argument and function definition are required. The callable function is responsible for telling
It would be nice if you could simply pass Cheers |
||||
|
|