使用 PHP 驗證 URL 可用性
如果您需要確定 URL 是否存在而不觸發 PHP 中的 404錯誤,請使用下列策略任您使用:
方法一:使用get_headers()
$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
function url_exists($url) { return curl_init($url) !== false; }
以上是如何在 PHP 中驗證 URL 可用性而不觸發 404 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!