Many programming languages has a coalesce function (example). PHP, sadly, does not.

What would be the most efficient way to implement one in PHP?

link|improve this question

feedback

closed as not constructive by casperOne Apr 20 at 15:28

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.

6 Answers

up vote 45 down vote accepted

There is a new operator in php 5.3 which does this: ?:

// A
echo 'A' ?: 'B';

// B
echo '' ?: 'B';

// B
echo false ?: 'B';

// B
echo null ?: 'B';

Source: http://www.php.net/ChangeLog-5.php#5.3.0

link|improve this answer
2  
What about multiple ternary shortcuts, would something like "echo $a ?: $b ?: $c ?: $d;" work? – ChrisR Mar 26 '10 at 13:55
1  
I just tested this and it does indeed work. Good suggestion. – Kevin Mar 27 '10 at 0:44
Does not work as expected for arrays. For example when trying to check if an undefined array element is falsey will result in an error. $input['properties']['range_low'] ?: '?' – Keyo Jul 12 '11 at 23:28
You should get an Undefined Index notice irrespective of using the coalesce operator. – Kevin Jul 13 '11 at 17:16
feedback

First hit for "php coalesce" on google.

function coalesce() {
  $args = func_get_args();
  foreach ($args as $arg) {
    if (!empty($arg)) {
      return $arg;
    }
  }
  return NULL;
}

http://drupial.com/content/php-coalesce

link|improve this answer
4  
Save a tiny bit of ram and don't duplicate the args into an array, just do foreach(func_get_args() as $arg) {} – TravisO Jun 18 '09 at 20:38
@TravisO I believe that caching func_get_args() is faster because it will save data in variable instead of calculating for every loop – Alfred Jun 19 '09 at 2:31
10  
@[Alfred,Ciaran] - you are incorrect. foreach() evaluates the first argument only once, to get an array, and then iterates over it. – gahooa Dec 12 '09 at 1:34
3  
Putting func_get_args() inside the foreach (here as $arg) won't change anything from a performance point of view. – Savageman Dec 12 '09 at 1:47
2  
@Savageman ... exactly ... if you are thinking of squeezing this millisecond of performance or few bytes of memory out of your application you're probably looking at the wrong performance/memory bottleneck – ChrisR Mar 26 '10 at 13:53
show 2 more comments
feedback

I really like the ?: operator. Unfortunately, it is not yet implemented on my production environment. So I use the equivalent of this:

function coalesce() {
  return array_shift(array_filter(func_get_args()));
}
link|improve this answer
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:

$id = coalesce($_GET['id'], $_SESSION['id'], null);

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:
$id = coalesce(@$_GET['id'], @$_SESSION['id'], null);

While not perfect, it will allow to use coalesce without any worry of notices.

link|improve this answer
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()

$testData = array(
  'FALSE'   => FALSE
  ,'0'      => 0
  ,'"0"'    => "0"	
  ,'NULL'   => NULL
  ,'array()'=> array()
  ,'new stdClass()' => new stdClass()
  ,'$undef' => $undef
);

foreach ( $testData as $key => $var )
{
  echo "$key " . (( empty( $var ) ) ? 'is' : 'is not') . " empty<br>";
  echo "$key " . (( is_null( $var ) ) ? 'is' : 'is not')  . " null<br>";
  echo '<hr>';
}

As you can see, empty() returns true for all of these, but is_null() only does so for 2 of them.

link|improve this answer
feedback

I'm currently using this, but I wonder if it couldn't be improved with some of the new features in PHP 5.

function coalesce() {
  $args = func_get_args();
  foreach ($args as $arg) {
    if (!empty($arg)) {
    return $arg;
    }
  }
  return $args[0];
}
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.