Answers for "check if string contains a value in array"

0

check if string contains a value in array

$count = 0;
str_replace($owned_urls, '', $string, $count);
// if replace is successful means the array value is present(Match Found).
if ($count > 0) {
  echo "One of Array value is present in the string.";
}
Posted by: Guest on October-04-2021

Code answers related to "check if string contains a value in array"

Browse Popular Code Answers by Language