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
https://forums.phpfreaks.com/topic/196159-array_search-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.