Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I, from an output, only select the first 10 words?

share|improve this question
5  
What have you tried? – Demian Brecht May 10 '11 at 21:21

4 Answers

up vote 20 down vote accepted
implode(' ', array_slice(explode(' ', $sentence), 0, 10));
share|improve this answer
Thanks worked just fine! – AAA May 10 '11 at 21:25

All the above answers will function incorrectly if there is an unexpected character in place of a space in the sentence structure, or if the sentence contains multiple conjoined spaces.

This version will work no matter what kind of "space" you use between words and can be easily extended to handle other characters... it currently supports any white space character plus , . ; ? !

function get_snippet( $str, $wordCount = 10 ) {
  return implode( 
    '', 
    array_slice( 
      preg_split(
        '/([\s,\.;\?\!]+)/', 
        $str, 
        $wordCount*2+1, 
        PREG_SPLIT_DELIM_CAPTURE
      ),
      0,
      $wordCount*2-1
    )
  );
}

I'm amazed at the lack of people using RegExp to answer these type of questions, but using RegExp where it isn't needed to answer others...

mutter mutter

I'll stop being in a bad mood now

v2 now without camelcase ;)

share|improve this answer
3  
+1 Why was this at 0 votes? It's a better solution than the other answers. Although, people shouldn't be using camel case in PHP. – Stephen Sarcsam Kamenar Sep 20 '12 at 20:27
@StephenSarcsamKamenar thanks... and good point, I'd been doing too much javascripting that day :) – pebbl Oct 13 '12 at 10:23
I do agree with @StephenSarcsamKamenar's question! I suppose that there are two much answers here. It is a duty of the one that made the question to update the right answer. This is the best for me: +1 with no doubt! – JeanValjean Dec 5 '12 at 8:34

http://snipplr.com/view/8480/a-php-function-to-return-the-first-n-words-from-a-string/

function shorten_string($string, $wordsreturned)
{
    $retval = $string;  //  Just in case of a problem
    $array = explode(" ", $string);
    /*  Already short enough, return the whole thing*/
    if (count($array)<=$wordsreturned)
    {
        $retval = $string;
    }
    /*  Need to chop of some words*/
    else
    {
        array_splice($array, $wordsreturned);
        $retval = implode(" ", $array)." ...";
    }
    return $retval;
}
share|improve this answer

A quick Google search for your exact question returns this solution from http://forumsblogswikis.com/2009/02/01/php-return-first-n-words-from-a-string/ :

function shorten_string($string, $wordsreturned)
/*  Returns the first $wordsreturned out of $string.  If string
    contains more words than $wordsreturned, the entire string
    is returned.
    */
    {
    $retval = $string;  //    Just in case of a problem
    $array = explode(" ", $string);
    if (count($array)<=$wordsreturned)
    /*  Already short enough, return the whole thing
        */
        {
        $retval = $string;
        }
    else
    /*  Need to chop of some words
        */
        {
        array_splice($array, $wordsreturned);
        $retval = implode(" ", $array)." ...";
        }
    return $retval;
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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