Last active
August 29, 2015 14:08
-
-
Save infn8/41a22190ae70e22b139c to your computer and use it in GitHub Desktop.
Pass an array of items and the first one that is not empty will be returned to you
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function cascade_values(){ | |
for ($i = 0; $i < func_num_args(); $i++) { | |
$val = func_get_arg($i); | |
if(!empty($val)){ | |
return $val; | |
} | |
} | |
return false; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment