私は単純なダウンロード カウンターを作成していますが、http://dev.kennyist.com/download.php?file= gvbで見られるようにヘッダー エラーが発生し続けます。
<?
error_reporting(-1);
$file= $_GET['file'];
print $_GET['file'];
$countf= 'download/' . $file . '.txt';
print $countf;
$count = file_exists($countf) ? file_get_contents($countf) : 0;
file_put_contents($countf, ++$count);
header("Location: http://dev.kennyist.com/download/[$file].zip");
die();
?>
出力:
gvbdownload/gvb.txt
警告: ヘッダー情報を変更できません - 17 行目の /home/kennyi81/public_html/dev/download.php の (/home/kennyi81/public_html/dev/download.php:1 で出力が開始された) によって既に送信されたヘッダー