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

php判断远程图片是否存在

时间:2015-01-23  来源:西部数据  作者:西部数据
  1. function img_exits($url
  2.     $ch = curl_init(); 
  3.     curl_setopt($ch, curlopt_url,$url); 
  4.     curl_setopt($ch, curlopt_nobody, 1); // 不下载 
  5.     curl_setopt($ch, curlopt_failonerror, 1); 
  6.     curl_setopt($ch, curlopt_returntransfer, 1); 
  7.  
  8.     if(curl_exec($ch)!==false) 
  9.         return true; 
  10.     else 
  11.         return false; 
  12.   
  13.  
  14. //方法二,代码如下: 
  15.  
  16. function img_exists($url)  
  17.     if(file_get_contents($url,0,null,0,1)) 
  18.         return 1; 
  19. else 
  20.         return 0; 
  21.  
  22. // 
  23.  
  24. /** 
  25. @title:如何检查某个远程文件是否存在(php5) 
  26. @author:axgle 
  27. @version:1.0 
  28. *//开源代码phpfensi.com 
  29. $url='http://www.phpfensi.com/'
  30. echo url_exists($url); 
  31.   
  32. function url_exists($url) { 
  33.   
  34.         $head=@get_headers($url); 
  35.         if(is_array($head)) { 
  36.                 return true; 
  37.         } 
  38.         return false; 
  39.   
  40.  
  41. ?> 
  42.   
  43. 网页方法,代码如下: 
  44. <script   language= "javascript">  
  45. function   geturl(url)  
  46. {  
  47.         var   xmlhttp   =   new   activexobject( "microsoft.xmlhttp ");  
  48.         xmlhttp.open( "get ",url,false);  
  49.         xmlhttp.send();  
  50.         if   (xmlhttp.readystate==4)  
  51.             alert((xmlhttp.status==200)? "文件存在 ""文件不存在 ");  
  52. }  
  53. </script>  
  54. 请输入文件地址: <input   name= "file "   id= "file "   value= "http://www.phpfensi.com ">  
  55. <button   onclick= "geturl(file.value) "> 检测地址 </button> 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门