phpにおけるヘッダーの使い方は、 1. ページにジャンプする; 2. content-typeを宣言する; 3. レスポンスのステータスコードを返す; 4. 一定時間後にジャンプを実行する; 5. ブラウザのキャッシュを制御する; 6. 実行するhttp認証。
関連する学習の推奨事項: php プログラミング (ビデオ)
php ヘッダーの使用法は次のとおりです。
##1. ページへ移動
header('Location:'.$url); //Location和":"之间无空格
2. content-type
header('content-type:text/html;charset=utf-8');
3 を宣言します。レスポンスステータスコードを返す#header('HTTP/1.1 404 Not Found');
#4. 一定時間後にジャンプ実行
header('Refresh: 10; url=http://www.baidu.com/'); //10s后跳转
##5. ブラウザキャッシュの制御
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT"); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache");
6. http 検証を実行します
header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"');
7. ダウンロード操作を実行します
header('Content-Type: application/octet-stream'); //设置内容类型 header('Content-Disposition: attachment; filename="example.zip"'); //设置MIME用户作为附件 header('Content-Transfer-Encoding: binary'); //设置传输方式 header('Content-Length: '.filesize('example.zip')); //设置内容长度
プログラミングについて詳しく知りたい場合は、 php training 列に注目してください。
以上がPHPのヘッダーの用途は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。