Jump to content

Recommended Posts

I think I got an effective way to count the number of words in a string, but that's as far as I got.  I then need to delete all the other words that preceed the 10th word.  Here's what I have so far...

IF (count(explode(" ",$row['title'])) > 10){
//delete the other words
$newtitle = //code to delete the other words
//update mysql
}

explode it into an array and then take a slice of the array

 

$words = explode(" ", $row['title']);
if (count($words) > 10) {
  $words = array_slice($words, 0, 10); // First Ten words
  $row['title'] = implode(" ", $words);
}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.