📜  if 数组中的字符串 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:47.551000             🧑  作者: Mango

代码示例3
$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.";
}