-
/** - phpはリモートファイルが存在するかどうかを検出します
- http://bbs.it-home.org
- */
- function get_http_response_code($theURL) {
- $headers = get_headers($theURL)
- return substr($headers[0] , 9, 3);
- }
/**
- * リダイレクトなしで HTTP リクエストに応じてサーバーから送信されたすべての実際のヘッダーを取得します
- * リダイレクトなしでヘッダーを取得します
- */
- function get_real_headers($url,$format=0,$follow_redirect=0) {
- if (!$follow_redirect ) {
- // 新しいデフォルト オプションを設定します
- $opts = array('http' =>
- array('max_redirects'=>1,'ignore_errors'=>1)
- );
- stream_context_get_default($opts);
- }
- // ヘッダーを取得します
- $headers=get_headers($url,$format);
- // デフォルトのオプションを復元します
- if (isset($opts)) {
- $opts = array('http' =>
- array ('max_redirects'=>20,'ignore_errors'=>0)
- );
- stream_context_get_default($opts);
- }
- //return
- return $headers;
- }
- ?>
-
-
コードをコピー
curlの判定方法については、 curlを使用してリモートファイルの存在を判定するphpコードを参照してください。
|