php判断远程文件是否存在的例子

发布时间:2020-08-13编辑:脚本学堂
本文介绍了php判断远程文件是否存在的方法,一个php实例,使用get_headers获取远程文件头部信息,以判断文件是否存在,需要的朋友参考下。

在之前介绍的php教程中,我们曾介绍过一些php判断远程文件是否存在的例子,一起来看看。

下面是今天的例子,代码:
 

复制代码 代码示例:
//判断远程文件是否存在 
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; 
    } // www.jb200.com
    return false;