Skip to content

Instantly share code, notes, and snippets.

@andrescifuentesr
Created April 18, 2014 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrescifuentesr/11046255 to your computer and use it in GitHub Desktop.
Save andrescifuentesr/11046255 to your computer and use it in GitHub Desktop.
A php function to cut a character chaine
//----------------------------------------------------------------------------------------------------
// Fonction pour limiter le nombre de caractere
//----------------------------------------------------------------------------------------------------
function resume_xmots($MaChaine,$xmots)
{
$ChaineTab=explode(" ",$MaChaine);
for($i=0;$i<$xmots;$i++)
{
$NouvelleChaine.=" "."$ChaineTab[$i]";
}
return $NouvelleChaine;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment