Does anybody have the exact name of the function Drupal uses to turn the following string:

"Hello, how are you. Some more text."

into

"Hello, how..."

I.e. The function that's used to cut off a sentence after x words, and then add an elipsis. Alternatively, if anybody has a php snippet that does this, that would be great too!

link|improve this question

69% accept rate
feedback

4 Answers

function getFirstWords($string, $words = 1)
{
    $string = explode(' ', $string);

    if (count($string) > $words)
    {
    	return implode(' ', array_slice($string, 0, $words)) . '...';
    }

    return implode(' ', $string);
}

echo getFirstWords('Hello, how are you. Some more text.', 2); // Hello, how...
link|improve this answer
getFirstWords('Hello, how are you. Some more text.', 10). You probably want to do a check that the string has been shortened before adding the ellipsis. – Dominic Rodger Aug 13 '09 at 8:08
Fixed, thank you. – Alix Axel Aug 13 '09 at 8:14
feedback

I think you're looking for truncation that respects word-boundaries. I don't know how Drupal does it, but there's decent code here.

link|improve this answer
feedback

http://api.lullabot.com/views_trim_text This is the function that is used..

link|improve this answer
feedback

It seems to be truncate_utf8() in unicode.inc.

link|improve this answer
That's weird, since space is a ASCII char I don't see the reason for a custom UTF-8 function. Maybe you could paste the code snippet here? – Alix Axel Aug 13 '09 at 8:30
api.drupal.org/api/function/truncate_utf8 no need for drupal_substr() and all that slow crap. – Alix Axel Aug 13 '09 at 8:34
@eyze: I haven't had experience with unicode, but I presume the reason for a UTF-8 function is to preserve multi-byte characters where the second half might be 0x20. – too much php Aug 13 '09 at 8:54
Indeed, however that doesn't happen with spaces, the same way trim() can be used on UTF-8 strings safely. phpwact.org/php/i18n/utf-8#utf-8_safe_functionality – Alix Axel Aug 13 '09 at 9:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.