使用 PHP 驗證 URL 是否存在
確保 URL 的存在對於 Web 開發任務至關重要。在 PHP 中,有幾種有效的方法可以實現此目的。
1. get_headers() 方法:
此方法會擷取 URL 的標頭並檢查回應碼。如果回應代碼為 404,則該 URL 不存在。
$file = 'http://www.example.com/somefile.jpg'; $file_headers = @get_headers($file); if(!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') { $exists = false; } else { $exists = true; }
2. curl_init() 方法:
或者,可以使用curl_init() 方法。如果函數傳回非 false 值,則該 URL 存在。
function url_exists($url) { return curl_init($url) !== false; }
此方法利用了curl 擴展,該擴展必須安裝在伺服器上才能工作。
以上是如何使用 PHP 驗證 URL 是否存在?的詳細內容。更多資訊請關注PHP中文網其他相關文章!