Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created March 26, 2015 17:14
Show Gist options
  • Save bytefade/2423529579e07f7013c7 to your computer and use it in GitHub Desktop.
Save bytefade/2423529579e07f7013c7 to your computer and use it in GitHub Desktop.
Retornar parte da string
<?php function lmWord($string, $words = '100'){
$count = strlen($string);
if($count <= $words){
return $string;
}else{
$strpos = strrpos(substr($string,0,$words),' ');
return substr($string,0,$strpos).'...';
}
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment