私はこのコードをdownload.php
ファイルに持っています:
$file = //path to file (for example .xlsx file)
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment; filename=file.xlsx');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}
なので、開くsite.com/download.php
とエクセルファイルがダウンロードされます。
私の質問は:
どういうわけか、ダウンローダーはサーバー上のダウンロードされた xlsx ファイルの場所を理解できますか? またはこれは不可能ですか?