复制代 代码如下:
/*** 関数: 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 ヘッダーを設定します (リディクションに適しています)
// ロケーション ヘッダーと一緒に使用します
header('HTTP/1.1 301 Moved Permanently');
// 新しい場所にリダイレクトします:
header('場所: http://www.example.org/');
// 遅延を伴うリダイレクト:
header('Refresh: 10; url=http://www.example.org/');
print '10 秒後にリダイレクトされます';
// HTML 構文:// header('Content-Transfer-Encoding:binary');送信するファイルをロードします:readfile('example.zip');
// 現在のドキュメントのキャッシュを無効にします:
header('Cache-Control: no-cache, no-store, max-age=0 、再検証する必要があります');
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 '間違ったログインデータを入力しました';
?>