/*** 関数: PHP header() の例 (PHP)
** 説明: PHP の header() 関数の使用方法に関するいくつかの例 詳細なチュートリアルは、expertsrt.com (英語) または ffm.junetz.de (ドイツ語) でご覧いただけます。 .これらは、web-caching.com でのキャッシュについても役立ちます。
** 例: 以下を参照してください。
ヒント:次のサイトを使用してヘッダーを確認できます:
web-sniffer.net、
delorie.comまたは
www.forret.com。
** 著者: ジョナス・ジョン
*/
// 404 ページを修正:
header('HTTP/1.1 200 OK');
// 404 ヘッダーを設定します:
header('HTTP/1.1 404 Not Found');
// Moved Permanently ヘッダーを設定します (リドリクションに適しています)
// location ヘッダーと一緒に使用します
header('HTTP/1.1 301 Moved Permanently');
// 新しい場所にリダイレクトします:
header('場所: http://www.example.org/');
// 遅延を伴うリダイレクト:
header('Refresh: 10; url=http://www.example.org/');
print '10 秒後にリダイレクトされます';
// HTML 構文://
// ファイルをロードしますsend:readfile('example.zip');
// 現在のドキュメントのキャッシュを無効にします:
header('Cache-Control: no-cache、no-store、max-age=0、must-revalidate');
header('有効期限: 1997 年 7 月 26 日月曜日 05:00:00 GMT');
// pastheader('Pragma: no-cache'); の日付
// コンテンツ タイプを設定します:
header('Content-Type: text/html; charset=iso-8859-1');
header('Content-Type: text/html; charset=utf-8');
header('Content-Type: text/plain');
// プレーンテキストファイル
header('Content-Type: image/jpeg');
// JPG 画像
header('Content-Type: application/zip');
// ZIP ファイル
header('Content-Type: application/pdf');
// PDF ファイル
header('Content-Type: audio/mpeg');
// オーディオ MPEG (MP3,…) ファイル
header('Content-Type: application/x-shockwave-flash');
// Flash アニメーション// サインイン ボックスを表示
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
print 'ユーザーがキャンセルまたは '; を押した場合に表示されるテキスト
print '間違ったログインデータを入力しました';
?>