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?
| |||
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
There is a new operator in php 5.3 which does this:
| |||||||||||||
feedback
|
|
First hit for "php coalesce" on google.
| |||||||||||||||||||
feedback
|
|
I really like the ?: operator. Unfortunately, it is not yet implemented on my production environment. So I use the equivalent of this:
| |||
|
feedback
|
|
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. edit: You can ignore the notices by using doing this: While not perfect, it will allow to use coalesce without any worry of notices. | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
I'm currently using this, but I wonder if it couldn't be improved with some of the new features in PHP 5.
| |||
|
feedback
|