📅  最后修改于: 2022-03-11 14:55:05.503000             🧑  作者: Mango
$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.";
}