この記事では主に、phpのヘッダーにある一般的なファイルタイプのコンテンツタイプに関する関連情報を紹介します。必要な方は参照してください。それ
PHP では、header 関数を通じてヘッダー情報を送信できます。また、ファイルの content-type を設定することもできます。いくつかの一般的なファイル タイプの content-type 値のリストを次に示します。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
//日付 2015-06-22 //エンコーディングを定義する header( 'Content-Type:text/html;charset=utf-8 ');
//アトム header('コンテンツタイプ: application/atom+xml');
//CSS header('Content-type: text/css');
//JavaScript header('Content-type: text/javascript');
//JPEG画像 header('Content-type: image/jpeg');
//JSON header('Content-type: application/json');
header('Content-type: application/pdf');
//RSS header('Content-Type: application/rss+xml; charset=ISO-8859-1');
//テキスト(プレーン) header('Content-type: text/plain');
//XML header('コンテンツタイプ: text/xml');
//わかりました header('HTTP/1.1 200 OK');
//404 ヘッダーを設定します: header('HTTP/1.1 404 が見つかりません');
//永続的にリダイレクトされるアドレスを設定します header('HTTP/1.1 301 が完全に移動されました');
//新しいアドレスに移動します header('場所: http://www.example.org/'); //ファイルの遅延リダイレクト: header('更新: 10; url=http://www.example.org/'); print '10 秒後にリダイレクトされます';
//もちろん、HTML構文を使用して実装することもできます // header('コンテンツ転送エンコーディング: バイナリ'); // 送信するファイルをロードします: readfile('example.zip');
// 現在のドキュメントのキャッシュを無効にする header('キャッシュ制御: キャッシュなし、ストアなし、max-age=0、必須再検証'); header('有効期限: 1997 年 7 月 26 日月曜日 05:00:00 GMT') // 過去の日付 header('プラグマ: キャッシュなし');
//コンテンツタイプを設定: 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'); // 音声ファイル header('Content-Type: application/x-shockw**e-flash'); //Flash アニメーション
//ログインダイアログを表示する header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"'); print 'ユーザーがキャンセルまたは '; を押した場合に表示されるテキストprint '間違ったログインデータを入力しました'; |
以上がこの記事の全内容ですが、皆さんに気に入っていただければ幸いです。