PHP判断本地和远程图片是否存在的集中方法:
我们知道file_exists()可以判断本地文件是否存在,存在返回TRUE,不存在返回FALSE,而远程图片是否存在没有现成的函数,可以通过如下方式:
方法一,使用curl判断判断远程图片或文件是否存在:
/**
* @link http://www.bluestep.cc
*/
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);
$content = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if($http_code == 200) {//if (preg_match(“/404/”, $contents)){
return true;
}
return false;
}
方法二,使用fopen()函数,它要在allow_url_open开启的状态下,否则会报错:
$url = ‘http://www.phpddt.com/img/qrcode_for_phpddt.JPG’;
if(@fopen($url, ‘r’)) {
echo ‘文件存在’;
} else {
echo ‘文件不存在’;
}
方法三,get_headers取得服务器响应一个 HTTP 请求所发送的所有标头,效率较低:
$url = ‘http://www.phpddt.com/img/qrcode_for_phpddt.JPG’;
stream_context_set_default(
array(
‘http’ => array(
‘timeout’ => 1,
)
)
);
$headers = get_headers($url);
if(preg_match(‘/200/’,$headers[0])) {
echo ‘文件存在’;
} else {
echo ‘文件不存在’;
}
方法四,file_get_contents()函数:
$opts = array(
‘http’=>array(
‘timeout’=>3,
)
);
$context = stream_context_create($opts);
$resource = @file_get_contents(‘http://www.phpddt.com/img/qrcode_for_phpddt.JPG’, false, $context);
if($resource) {
echo ‘文件存在’;
} else {
echo ‘文件不存在’;
}