Mysql
 sql >> Database >  >> RDS >> Mysql

Tempo di download del file in PHP/MySQL

Ok, ora capisco la domanda in base al commento di OP. La domanda è come capire a che ora un utente ha scaricato un file. In tal caso, il collegamento per il download deve essere uno script php e verrebbe scritto nel tempo in db, quindi restituirà il contenuto del file nello stream con l'intestazione del contenuto corretta.

Vedi 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;
}
?>

Tutto quello che devi fare è passare il nome del file come parametro e scrivere l'ora corrente nel DB.