Skip to content

Instantly share code, notes, and snippets.

@helisoncruz
Last active February 19, 2020 11:17
Show Gist options
  • Save helisoncruz/7d49958b46231c27ad4a52951b2d4e2a to your computer and use it in GitHub Desktop.
Save helisoncruz/7d49958b46231c27ad4a52951b2d4e2a to your computer and use it in GitHub Desktop.
Function PHP para Limitar Palavras sem cortar
<?php
function limitarTexto($texto, $limite){
$contador = strlen($texto);
if ( $contador >= $limite ) {
$texto = substr($texto, 0, strrpos(substr($texto, 0, $limite), ' ')) . '...';
return $texto;
}else{
return $texto;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment