php 言語では、header() 関数は非常に便利です。特に ajax を使用する場合、予期しない問題の解決に役立ちます。以下にヘッダーについて詳しく説明します。 phper
コードをコピーします コードは次のとおりです:
// 404 ページを修正します:
header('HTTP/1.1 200 OK');
// set 404 header:
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 構文:// header('Content-Transfer-Encoding: binary') );
// 送信するファイルをロードします:readfile('example.zip');
// 現在のドキュメントのキャッシュを無効にします:
header('Cache-Control: no-cache, no-store, max-age= 0、-revalidate する必要があります');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
// 過去の日付header('Pragma: no-cache');タイプ:
header('Content-Type: text/html; charset=iso-8859-1');
header('Content-Type: text/html; charset=utf-8');タイプ: 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('WWW-Authenticate: Basic realm="Top Secret"' );
print 'ユーザーがキャンセルまたは ';
print '入力したログインデータが間違っている場合に表示されるテキスト';
?>
http://www.bkjia.com/PHPjc/324044.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/324044.html
技術記事 php 言語では、header() 関数は非常に便利です。特に ajax を使用する場合、予期しない問題の解決に役立ちます。以下にヘッダーについて詳しく説明します。 phpe にとってそれを願っています...