检查数组中的字符串是否匹配
要检测字符串是否包含存储在数组中的 URL,可以使用 PHP 循环将字符串与数组中的每个 URL 进行比较。以下是代码的更正版本:
<code class="php">$owned_urls = ['website1.com', 'website2.com', 'website3.com']; $string = 'my domain name is website3.com'; foreach ($owned_urls as $url) { // Use strpos() to check for matches (case-sensitive) if (strpos($string, $url) !== FALSE) { echo "Match found"; return true; } } // If no match is found, return false echo "Match not found"; return false;</code>
此代码循环遍历 URL,对于每个 URL,使用 strpos() 函数检查字符串是否包含该 URL。如果找到匹配项,代码将输出“Match found”并返回 true。如果未找到匹配,则输出“未找到匹配”并返回 false。
以上是如何在 PHP 中检查字符串是否包含数组中的 URL?的详细内容。更多信息请关注PHP中文网其他相关文章!