网站地图    收藏   

主页 > php专栏 > php图像处理 >

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

来源:未知    时间:2014-11-27 22:56 作者:xxadmin 阅读:

[导读] 在php中我们利用file_exists来判断本地的文件是否存在,那么如何用PHP判断远程文件是否存在呢,下在我们一起来看一个例子,希望此例子是你需要用到的,代码如下: ?php /* *用PHP判断远程图片...

在php中我们利用file_exists来判断本地的文件是否存在,那么如何用PHP判断远程文件是否存在呢,下在我们一起来看一个例子,希望此例子是你需要用到的,代码如下:

  1. <?php 
  2. /* 
  3.  
  4. *用PHP判断远程图片(文件)是否存在 
  5.  
  6. *http://www.phpfensi.com 
  7.  
  8. */ 
  9.  
  10. function check_remote_file_exists($url) { 
  11.     $curl = curl_init($url); 
  12.      
  13. // 不取回数据 
  14.  
  15.     curl_setopt($curl, CURLOPT_NOBODY, true); 
  16.      
  17. // 抓取跳转后的内容 
  18.  
  19.     curl_setopt($curl, CURLOPT_FOLLOWLOCATION,1); 
  20.      
  21. // 发送请求 
  22.  
  23.     $result = curl_exec($curl); 
  24.     $found = false; 
  25.      
  26. // 如果请求没有发送失败 
  27.  
  28.     if ($result !== false) { 
  29.          
  30. // 再检查http响应码是否为200 
  31.  
  32.         $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); 
  33.         var_dump($statusCode); 
  34.         if ($statusCode == 200) { 
  35.              
  36. // $retcode >= 400 -> not found, $retcode = 200, found. 
  37.  
  38.             $found = true; 
  39.         } 
  40.     } 
  41.     curl_close($curl); 
  42.  
  43.     return $found
  44.  
  45. $exists = check_remote_file_exists('http://www.phpfensi.com /allimg/090403/140941513J2-2.jpg'); 
  46. if ($exists) { 
  47.     echo '存在'
  48. else { 
  49.     echo '不存在'
  50.  
  51. $exists = check_remote_file_exists('http://www.phpfensi.com /allimg/090403/140941513J2-4.jpg'); 
  52. if ($exists) { 
  53.     echo '存在'
  54. else { 
  55.     echo '不存在'
  56. exit
  57. ?> 

还有一种简单的方法,但效率是低下的,代码如下:

strstr(current(get_headers($url)), "200") 

 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论