応答ヘッダー設定を変更する
php メソッド: 1. ジャンプ関数、コードは [header('location:index.php')]; 2. ページ更新、コードは [header('refresh:3 ; url=index.php')]。
応答ヘッダー設定を変更するための php メソッド:
ジャンプ関数
header('location:index.php');
ページ更新
header('refresh:3;url=index.php');
出力画像
header('Content-type:image/gif,image/png,image/jpg,image/jpeg');
ダウンロードコンテンツ
header('Content-type:application/octet-stream');
関連学習の推奨事項: PHPプログラミングの入門から熟練度まで
以上がPHPでレスポンスヘッダーの設定を変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。