Answers for "findind specific string in array in php"

PHP
0

php find part of string in array

foreach($array as $item){
  if(strpos($item,"mysearchword")!== false){
    echo 'found';
  }
}
Posted by: Guest on May-05-2021
0

php string search in array

// Search a partial string matching in array elements
function array_search_partial($arr, $keyword) {
    foreach($arr as $index => $string) {
        if (strpos($string, $keyword) !== FALSE)
            return $index;
    }
}
Posted by: Guest on October-24-2021

Code answers related to "findind specific string in array in php"

Browse Popular Code Answers by Language