PHPでheader()を使用するサンプル

1.header()メソッド
コード下記:
<?php
header('Location: url’);
?>
説明:
header ( string $string [, bool $replace = true [, int $http_response_code]] )
header()は生のhttpヘッダを送信するために使用されます。

2.ブラウザのキャッシュを無効にする
コード下記:
header(“Expires: Mon, 26 Jul 2013 05:00:00 GMT");
header(“Cache-Control: no-cache");
header(“Pragma: no-cache");

3.「名前を付けて保存」ダイアログボックスを表示する
コード下記:
<?php
header(“Content-type:application/pdf");
header(“Content-Disposition:attachment;filename=’startnews24_dl.pdf'");
readfile(“startnews24_ol.pdf");
?>

4.ブラウザに「http 404」を表示
<?php
//404 not found
header(“Status: 404 Not Found");
?>

PHP

Posted by arkgame