Many programming languages has a coalesce function (example). PHP, sadly, does not.
What would be the most efficient way to implement one in PHP?
|
|
Many programming languages has a coalesce function (example). PHP, sadly, does not. What would be the most efficient way to implement one in PHP? |
|||
|
|
|
|
First hit for "php coalesce" on google.
|
||||||
|
|
|
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. |
|||
|
|
|
|
I'm currently using this, but I wonder if it couldn't be improved with some of the new features in PHP 5.
|
|||
|
|