ファイルをダウンロードしましたが、代わりに無効なファイルが返されます。
これが私のdownload_content.php
<?php
$filename = $_GET["filename"];
$buffer = file_get_contents($filename);
/* Force download dialog... */
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
/* Don't allow caching... */
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
/* Set data type, size and filename */
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . strlen($buffer));
header("Content-Disposition: attachment; filename=$filename");
/* Send our file... */
echo $buffer;
?>
ファイルリンクのダウンロード:
<a href="download_content.php?filename=/gallery/downloads/poster/large/'.$r['file'].'"> Download</a>
$r['file']
ダウンロードするファイル名が含まれています。
ファイルを含むフォルダの完全なパスは次のとおりです。
localhost/ja/gallery/downloads/poster/large/'.$r['file'].'
ja
のルートフォルダですhtdocs
。
実際の問題が何であるかわかりませんが、誰かが私を助けてくれますか?