php find part of string in array code example
Example: php find part of string in array
foreach($array as $item){
if(strpos($item,"mysearchword")!== false){
echo 'found';
}
}
foreach($array as $item){
if(strpos($item,"mysearchword")!== false){
echo 'found';
}
}