Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@farico
Created July 15, 2010 08:45
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 farico/476678 to your computer and use it in GitHub Desktop.
Save farico/476678 to your computer and use it in GitHub Desktop.
function isset_assign( $needle, $haystack ) {
if ( isset( $haystack[$needle] ) ) {
return $haystack[$needle];
}
else {
return $needle;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment