Skip to content

Instantly share code, notes, and snippets.

@FutureMedia
Last active August 29, 2015 14:02
Show Gist options
  • Save FutureMedia/f79e7a30a0ea666489aa to your computer and use it in GitHub Desktop.
Save FutureMedia/f79e7a30a0ea666489aa to your computer and use it in GitHub Desktop.
function extract_string_from_array($array_of_strings, $comparison){
$array = array();
foreach ($array_of_strings as $string):
if (strstr($string, $comparison)):
array_push($array, $string);
endif;
endforeach;
return $array;
}
//$another = extract_string_from_array($string, 'something-to-compare');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment