当前位置:Gxlcms > PHP教程 > get_headers函数判断远程文件是否存在

get_headers函数判断远程文件是否存在

时间:2021-07-01 10:21:17 帮助过:20人阅读

/判断远程文件是否存在
function remote_file_exists($url) {
$executeTime = ini_get('max_execution_time');
ini_set('max_execution_time', 0);
$headers = @get_headers($url);
ini_set('max_execution_time', $executeTime);
if ($headers) {
$head = explode(' ', $headers[0]);
if ( !emptyempty($head[1]) && intval($head[1]) < 400) return true;
}
return false;
}

以上就介绍了get_headers函数判断远程文件是否存在,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行