php のヘッダーは、主に元の http ヘッダーをクライアントに送信するために使用されます。一般的に、ページが存在しないことをブラウザーに通知したり、リダイレクトを遅らせたり、コンテンツ タイプを示したり、ダウンロードされたことを宣言したりするために使用されます。ファイルの保存、現在のドキュメントの更新、キャッシュの無効化、検証を必要とするログイン ダイアログの表示など
#[推奨コース:PHP チュートリアル]
PHP の header() 関数は、元の HTTP ヘッダーをクライアントに送信するために使用されます。 PHP でよく使用されるヘッダー関数 header. 一定の参考値があり、皆様のお役に立てれば幸いです。 header('HTTP/1.1 200 OK'); // 通常のアクセスはOK header('HTTP/1.1 404 Not Found'); // ページが見つからないことをブラウザに通知しますexistheader('HTTP/1.1 301 Moved Permanently'); //永続的にリダイレクトされるアドレスを設定します 301header('Location: http://www.ithhc.cn/ '); //新しいアドレスにジャンプしますheader('Refresh: 10; url=http://www.ithhc.cn/'); //遅延リダイレクトとは、数秒ごとにジャンプすることを意味しますheader('X-Powered-By: PHP/6.0.0'); //X-Powered-By 情報を変更します header('Content- language: en'); //ドキュメント言語header('Content-Length: 1234'); //コンテンツの長さを設定しますheader('Last-Modified: '.gmdate('D, d M Y H:i:s' , $time).' GMT'); //最終変更時刻をブラウザに通知header('HTTP/1.1 304 Not Modified'); //ドキュメントの内容が変更されていないことをブラウザに通知
コンテンツ タイプを示します
header('Content-Type: text/html; charset=utf-8'); //Web ページのエンコーディングheader(' Content-Type: text/plain'); //プレーンテキスト形式header('Content-Type: image/jpeg'); //JPG、JPEG ヘッダー('Content-Type: application/zip'); // ZIP ファイルheader('Content-Type: application/pdf'); // PDF ファイルheader('Content- Type: audio/ mpeg'); //オーディオ ファイル header('Content-type: text/css'); //css fileheader('Content-type: text/ javascript'); //js fileheader('Content-type: application/json'); //jsonheader('Content-type: application/pdf'); / /pdfheader('Content-type: text/xml'); //xmlheader('Content-Type: application/x-shockw**e-flash'); //Flash アニメーションダウンロードしたファイルを宣言
header('Content-Type: application/octet-stream'); header(' Content-Disposition:attachment; filename="ITblog.zip"');header('Content-Transfer-Encoding:binary');readfile('test.zip ');現在のドキュメントのキャッシュを無効にする
header('Cache-Control: no-cache、no-store、max-age=0、must- revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');検証が必要なログイン ダイアログ ボックスを表示します
header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"');宣言ダウンロードする必要のある xls File
header('Content-Disposition:attachment; filename=ithhc.xlsx');header('Content-Type: application/vnd. openxmlformats-officedocument.spreadsheetml.sheet');header('Content-Length: '.filesize('./test.xls'));header('Content-Transfer-エンコーディング: バイナリ'); header('キャッシュ コントロール: 必須再検証'); header('プラグマ: public'); readfile('. /test.xls') ;以上がPHPのヘッダーとは何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。