我想列出已下载文件的人数。我正在使用强制下载CodeIgniter。在此代码中,当用户单击下载时,它将自动更新/添加下载数量,而不知道文件已下载或只是单击它。
我想知道用户是否真的按'确定'或'取消'或用户成功下载文件
我试过这段代码:
public function download_file($namafile,$nofile)
{
$checkbot = $this->is_bot();
$data = file_get_contents(site_url().'/uploads/file/'.$namafile);
//
$filecek = FCPATH."uploads/file/".$namafile;
if (!file_exists($filecek))
{
show_404();
}
else if(!$checkbot)
{
$ipaddress=$this->get_client_ip();
$this->Download_m->downloaded($nofile,$ipaddress);
$this->Download_m->updateFileDownloaded($nofile);
force_download($namafile,$data);
}
else {
show_404();
}
}