1
2
3
4
5
6
7
8
9
10
11
    function ShortText($text) {
        // display char lenght
        $chars = 10;
        $text = $text." ";
        $text = substr($text,0,$chars);
        $text = substr($text,0,strrpos($text,' '));
        $text = $text."..."; // You can give a link here
        return $text;
    }
//usage;
echo ShortText("it's a very  very very very very very very longggggggggggggg text");