Skip to content

Instantly share code, notes, and snippets.

@shadda
Created October 3, 2013 22:13
Show Gist options
  • Select an option

  • Save shadda/6817936 to your computer and use it in GitHub Desktop.

Select an option

Save shadda/6817936 to your computer and use it in GitHub Desktop.
<?php
public static function Coalesce(&$value, $ifnull=null)
{
if(empty($value))
{
return $ifnull;
}
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment