Skip to content

Instantly share code, notes, and snippets.

@doxt3r
Last active March 2, 2017 10:39
Show Gist options
  • Save doxt3r/4968b1791bfee4907e288beafab44b1e to your computer and use it in GitHub Desktop.
Save doxt3r/4968b1791bfee4907e288beafab44b1e to your computer and use it in GitHub Desktop.
//Césure propre
function Cesure(){
$content = strip_tags($mon_contenu); // cleaning input string
if (strlen($content) > 300) {
$contentCut = substr($content,0,300);
$content = substr($contentCut,0,strrpos($contentCut," "))." ...";
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment