Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php truncate string if longer than limit and put some omission at the end..similar to ruby

I need this functionality in my recent php code many times, So I am lookin for a function to do the work, if there exists any..

If the string if bigger than the limit truncate it and put some omission text like ...(continued)..

Like in ruby we have truncate function on string

"And they found that many people were sleeping better.".truncate(25, :omission => "... (continued)")

I could do it by first checking the length exceeds.. then trim, then concatenation...But I am looking for some function similar..

like image 910
Rajat Singhal Avatar asked Nov 17 '25 03:11

Rajat Singhal


1 Answers

function truncate($string,$length=100,$appendStr="..."){
    $truncated_str = "";
    $useAppendStr = (strlen($string) > intval($length))? true:false;
    $truncated_str = substr($string,0,$length);
    $truncated_str .= ($useAppendStr)? $appendStr:"";
    return $truncated_str;
}

You could even edit the function so that you could either chose to cut at the exact maximum length or to respect word boundaries...
The choice is basically yours

like image 129
Emmanuel Okeke Avatar answered Nov 19 '25 16:11

Emmanuel Okeke