我通常使用curl判断判断远程图片或文件是否存在:
/**
* @link http://www.phpddt.com
*/
function url_exists($url) {
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
//不下载
curl_setopt($ch, CURLOPT_NOBODY, 1);
//设置超时
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if($http_code == 200) {
return true;
}
return false;
}
当然也有很多其它方法,或多或少有些限制和缺陷,如:
(1)使用fopen()函数,它要在allow_url_open开启的状态下,否则会报错。
$url = '/upload/otherpic61/108014.jpg';
if(@fopen($url, 'r')) {
echo '文件存在';
} else {
echo '文件不存在';
}
(2)get_headers取得服务器响应一个 HTTP 请求所发送的所有标头,效率较低,你可以测试下。
$url = '/upload/otherpic61/108014.jpg';
stream_context_set_default(
array(
'http' => array(
'timeout' => 1,
)
)
);
$headers = get_headers($url);
if(preg_match('/200/',$headers[0])) {
echo '文件存在';
} else {
echo '文件不存在';
}
(3)file_get_contents()函数
$opts = array(
'http'=>array(
'timeout'=>3,
)
);
$context = stream_context_create($opts);
$resource = @file_get_contents('/upload/otherpic61/108014.jpg', false, $context);
if($resource) {
echo '文件存在';
} else {
echo '文件不存在';
}
浏阳网站建设公司成都创新互联公司,浏阳网站设计制作,有大型网站制作公司丰富经验。已为浏阳上千家提供企业网站建设服务。企业网站搭建\成都外贸网站制作要多少钱,请找那个售后服务好的浏阳做网站的公司定做!