Blurb content
Shorten $content to a $length of characters.
<?
function blurb($content,$length){
$content_length=mb_strlen($content);
if($content_length>=$length){// Too long, return the shortened string
return mb_substr($content,0,$length-3).'...';
}else{// All good, return the string unchanged
return $content;
}
}
?>
Written by Brendan Murty
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Related Tags
#php
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#