Jump to content

array_search help


MDanz

Recommended Posts

$str consists of about 100 words. 

 

 

what this code does is search for $search in the $words array and then echoes the result if found, the first 10 results before it and after it. 

 

 

But my dilemna is when the result(word) occurs more than once in the array. How do i go onto the next word in the array search?

 

 

e.g. if there is 5 "batmans" in this 100 word string.  with the array search it would only go to the first batman(result), how would i get the second result in the array search?

$words = str_word_count($str,1);

$index = array_search($search, $words);

echo implode(' ',array_slice($words, $index - 10,  20, true));

Link to comment
Share on other sites

try

<?php
$words = str_word_count($str,1);
$word1=$words;
while ($index = array_search($search, $word1)){
$word1[$index]='';
echo implode(' ',array_slice($words, $index - 10,  20, true)); 
echo "<br />\n";
}

?>

Link to comment
Share on other sites

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.