கண்ணாடியும் கவிஞனே!
நீ உன்னை ரசிக்கும் அழகை ரசித்து,
முகம் பார்க்கும் கண்ணாடியும்;
முழுநேரே கவிஞன் ஆனதே!
நீ உன்னை ரசிக்கும் அழகை ரசித்து,
முகம் பார்க்கும் கண்ணாடியும்;
முழுநேரே கவிஞன் ஆனதே!
function limitText($string, $limit=200, $concatStr){ //strip tags to avoid breaking any html $string = strip_tags($string); if(strlen($string) > $limit){ //turncate string $stringCut = substr($string,0,$limit+1); //make sure it ends in a word. //if the ending word is a long text and it exceeds the limit, then break it up $string = (strrpos($stringCut, ' '))?substr($stringCut,0,strrpos($stringCut, ' ')).$concatStr:$stringCut.$concatStr; } return $string; }Function usage:
$limitedText = limitText($string, 100, '...');