欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-07 23:06:07
...
/判断远程文件是否存在
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])
}
return false;
}

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

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

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。