我需要检查远程服务器上是否存在特定文件。使用is_file()和file_exists()不起作用。有什么想法如何快速轻松地做到这一点?
is_file()
file_exists()
您必须使用CURL
function does_url_exists($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_NOBODY, true); curl_exec($ch); $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($code == 200) { $status = true; } else { $status = false; } curl_close($ch); return $status; }