首页  >  文章  >  后端开发  >  get_headers函数判断远程文件是否存在

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

WBOY
WBOY原创
2016-07-29 08:55:371368浏览
/判断远程文件是否存在  
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教程有兴趣的朋友有所帮助。

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