さて、OPのコメントに基づいて質問を理解しました。問題は、ユーザーがファイルをダウンロードした時刻をどのように把握するかです。その場合、ダウンロードリンクはphpスクリプトである必要があり、それは時間をdbに書き込み、ファイルのコンテンツを適切なコンテンツヘッダーとともにストリームに返します。
readfile を参照してください。 。
<?php
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
ファイル名をパラメータとして渡して、現在の時刻をDBに書き込むだけです。