Skip to content

Instantly share code, notes, and snippets.

@czterystaczwarty
Created March 28, 2013 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czterystaczwarty/5263328 to your computer and use it in GitHub Desktop.
Save czterystaczwarty/5263328 to your computer and use it in GitHub Desktop.
return first not null
function fst_not_null ($param_1. $param_2, ...) {
// get array of params
// or array
return current(array_filter(array($param_1, $param_2, ...)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment