我有一個PHP頁面,它處理文件下載的請求。我需要能夠檢測文件何時被成功下載。如何才能做到這一點?也許有一些檢測這個客戶端的方法,然後發送一個確認到服務器。如何檢測用戶何時已成功完成下載文件在php
謝謝。
編輯: 通過手柄,我的意思是頁面正在做這樣的事情:
$file = '/var/www/html/file-to-download.xyz';
header('Content-Type: application/octet-stream');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename=' . basename($file));
readfile($file);