📌  相关文章
📜  检查字符串是否包含数组中的值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:05.503000             🧑  作者: Mango

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