檢查陣列中的字串是否符合
要偵測字串是否包含儲存在陣列中的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中文網其他相關文章!