>  기사  >  백엔드 개발  >  원격 파일이 존재하는지 감지하는 PHP 코드 조각

원격 파일이 존재하는지 감지하는 PHP 코드 조각

WBOY
WBOY원래의
2016-07-25 09:00:49742검색
  1. /**

  2. php 检测远端文件是否存在
  3. by http://bbs.it-home.org
  4. */
  5. function get_http_response_code($theURL) {
  6. $headers = get_headers($theURL);
  7. return substr($headers[0], 9, 3);
  8. }

  9. /**

  10. * Fetches all the real headers sent by the server in response to a HTTP request without redirects
  11. * 获取不包含重定向的报头
  12. */
  13. function get_real_headers($url,$format=0,$follow_redirect=0) {
  14. if (!$follow_redirect) {
  15. //set new default options
  16. $opts = array('http' =>
  17. array('max_redirects'=>1,'ignore_errors'=>1)
  18. );
  19. stream_context_get_default($opts);
  20. }
  21. //get headers
  22. $headers=get_headers($url,$format);
  23. //restore default options
  24. if (isset($opts)) {
  25. $opts = array('http' =>
  26. array('max_redirects'=>20,'ignore_errors'=>0)
  27. );
  28. stream_context_get_default($opts);
  29. }
  30. //return
  31. return $headers;
  32. }
  33. ?>

复制代码
curl方式判断的方法,参考:php使用curl判断远程文件是否存在的代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.