Skip to content

Instantly share code, notes, and snippets.

@nelsondspy
Last active August 29, 2015 14:16
Show Gist options
  • Save nelsondspy/d6d495cfd772a40d30d6 to your computer and use it in GitHub Desktop.
Save nelsondspy/d6d495cfd772a40d30d6 to your computer and use it in GitHub Desktop.
function explode_min($string, $minlen ){
$subs = explode(" ", $string );
$arrfinal = array();
foreach($subs as $tok ){
$len_tok = strlen($tok);
if ( $len_tok >= $minlen ) {
array_push( $arrfinal , $tok );
}
}
return $arrfinal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment