当前位置:首页 > PHP教程 > php图像处理 > 列表

PHP判断远程图片或文件或url是否存在

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-22 10:33:26 浏览: 评论:0 

在php中要远程图片存不存在我们可以直接相关函数就可以了,像有curl,fopen之类的函数都可以快速的检测出来, 下面整理了几个例子,希望对各位有帮助.

例子一,代码如下:

  1. //判断远程文件  
  2. function check_remote_file_exists($url)  
  3. {  
  4. $curl = curl_init($url);  
  5. // 不取回数据  
  6. curl_setopt($curl, CURLOPT_NOBODY, true);  
  7. // 发送请求  
  8. $result = curl_exec($curl);  
  9. $found = false;  
  10. // 如果请求没有发送失败  
  11. if ($result !== false) {  
  12. // 再检查http响应码是否为200  
  13. $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);  
  14. if ($statusCode == 200) {  
  15. $found = true;  
  16. }  
  17. }  
  18. curl_close($curl); 
  19.  
  20. return $found;  

当然也有很多其它方法,或多或少有些限制和缺陷,如:

(1),使用fopen()函数,它要在allow_url_open开启的状态下,否则会报错,代码如下:

  1. $url = 'http://www.phpfensi.com /img/qrcode_for_phpddt.JPG'
  2. if(@fopen($url'r')) { 
  3.     echo '文件存在'
  4. else { 
  5.     echo '文件不存在'
  6. }  

(2),get_headers取得服务器响应一个 HTTP 请求所发送的所有标头,效率较低,你可以测试下,代码如下:

  1. $url = 'http://www.phpfensi.com /img/qrcode_for_phpddt.JPG'
  2.  
  3. stream_context_set_default( 
  4.     array
  5.         'http' => array
  6.              'timeout' => 1, 
  7.             ) 
  8.     ) 
  9. ); 
  10.  
  11.  
  12. $headers = get_headers($url); 
  13.  
  14. if(preg_match('/200/',$headers[0])) { 
  15.     echo '文件存在'
  16. else { 
  17.     echo '文件不存在'

(3),file_get_contents()函数,代码如下:

  1.  $opts = array
  2.     'http'=>array
  3.     'timeout'=>3, 
  4.     ) 
  5. ); 
  6. $context = stream_context_create($opts); 
  7. $resource = @file_get_contents('http://www.phpfensi.com /img/qrcode_for_phpddt.JPG', false, $context); 
  8.  
  9. if($resource) { 
  10.     echo '文件存在'
  11. else { 
  12.     echo '文件不存在'
  13. }

Tags: PHP远程图片 PHP远程url

分享到: