Skip to content

Instantly share code, notes, and snippets.

@stryju
Created September 26, 2013 14:46
Show Gist options
  • Select an option

  • Save stryju/6715238 to your computer and use it in GitHub Desktop.

Select an option

Save stryju/6715238 to your computer and use it in GitHub Desktop.
function either() {
foreach ( func_get_args() as $arg ){
if ( is_string( $arg ) ? !! trim( $arg ) : !! $arg ) {
return $arg;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment