php ヘッダー関数は、HTTP ヘッダー メソッド [header( 'Content-Type: text/html; charset=utf-8 '); ] を設定します。これは、エンコーディングを utf-8 に設定することを意味します。
HTTP ヘッダーを設定する PHP ヘッダー関数の例は次のとおりです。
(ビデオ チュートリアルの推奨: java ビデオ チュートリアル)
エンコーディングを定義します
header( 'Content-Type:text/html;charset=utf-8 ');
404 ヘッダーを設定します:
header('HTTP/1.1 404 Not Found');
アドレスを永続的にリダイレクトするように設定します
header('HTTP/1.1 301 Moved Permanently');
新しいアドレスに移動しますアドレス
header('Location: http://www.example.org/');
ファイルの遅延リダイレクト:
header('Refresh: 10; url=http://www.example.org/'); print 'You will be redirected in 10 seconds';
ブラウザに最終変更時刻を通知
$time = time() - 60; // or filemtime($fn), etc header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
現在のドキュメントのキャッシュを無効にする
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Pragma: no-cache');
関連する推奨事項: php トレーニング
以上がPHPヘッダ関数でHTTPヘッダを設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。