尝试这个。
$string = 'my domain name is website3.com';foreach ($owned_urls as $url) { //if (strstr($string, $url)) { // mine version if (strpos($string, $url) !== FALSE) { // Yoshi version echo "Match found"; return true; }}echo "Not found!";return false;如果要检查不区分大小写,请使用stristr()或stripos()。



