vote up 2 vote down star

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

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

flag

3 Answers

vote up 3 vote down check

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|flag
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 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 at 2:31
@TravisO yeah like Alfred said, if you bring the call to func_get_args() into the loop condition it'll get called each time - PHP can't tell that the function result won't change each time. – Ciaran McNulty Jun 19 at 8:11
vote up 3 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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