Jump to content

[SOLVED] find a string in array


galayman

Recommended Posts

Hi all, i have this array

 

$str = array("apple is red", "banana is yellow", "pineaple is tropical fruit", "coconut is also tropical fruit", "grape is violet");

 

i want to find string "coconut" inside $str and put the whole string "coconut is also tropical fruit" into variable $coconut.

 

can i do this?

 

i don't want to use the this code

 

<?
$coconut = $str[3];
echo "$coconut";
?>

 

can someone help?

 

Thank you, Best Regards

Link to comment
https://forums.phpfreaks.com/topic/79456-solved-find-a-string-in-array/
Share on other sites

Give this a try

 

<?php 

$str = array("apple is red", "banana is yellow", "pineaple is tropical fruit", "coconut is also tropical fruit", "grape is violet");

foreach ($str as $phrase){
   if (strstr($phrase, 'coconut')) $coconut = $phrase;
   if(isset($coconut)) break;
}

echo $phrase;

?>

  • 3 years later...

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.