php判断远程图片是否存在

  1. function img_exits($url)
  2. {
  3. $ch = curl_init();
  4. curl_setopt($ch, curlopt_url,$url);
  5. curl_setopt($ch, curlopt_nobody, 1); // 不下载
  6. curl_setopt($ch, curlopt_failonerror, 1);
  7. curl_setopt($ch, curlopt_returntransfer, 1);
  8. if(curl_exec($ch)!==false)
  9. return true;
  10. else
  11. return false;
  12. }
  13. //方法二,代码如下:
  14. function img_exists($url)
  15. {
  16. if(file_get_contents($url,0,null,0,1))
  17. return 1;
  18. else
  19. return 0;
  20. }
  21. //
  22. /**
  23. @title:如何检查某个远程文件是否存在(php5)
  24. @author:axgle
  25. @version:1.0
  26. *//开源代码phpfensi.com
  27. $url='http://www.phpfensi.com/';
  28. echo url_exists($url);
  29. function url_exists($url) {
  30. $head=@get_headers($url);
  31. if(is_array($head)) {
  32. return true;
  33. }
  34. return false;
  35. }
  36. ?>
  37. 网页方法,代码如下:
  38. <script language= "javascript">
  39. function geturl(url)
  40. {
  41. var xmlhttp = new activexobject( "microsoft.xmlhttp ");
  42. xmlhttp.open( "get ",url,false);
  43. xmlhttp.send();
  44. if (xmlhttp.readystate==4)
  45. alert((xmlhttp.status==200)? "文件存在 ": "文件不存在 ");
  46. }
  47. </script>
  48. 请输入文件地址: <input name= "file " file " value= "http://www.phpfensi.com ">
  49. <button onclick= "geturl(file.value) "> 检测地址 </button>