用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

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

时间:2015-01-23  来源:西部数据  作者:西部数据

在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") 

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门