我有4種不同類型的文件下載image/doc/pdf/xls。我想點擊文件鏈接下載文件。如何下載文件cakephp 2.4
//控制器
public function sendFile($id) {
$file = $this->Attachment->getFile($id);
$this->response->file($file['path']);
// Return response object to prevent controller from trying to render
// a view
return $this->response;
}
//視圖
<a href="<?php echo $this->response->file($file->path); ?>"><?php echo $file->name; ?></a>
剛剛更新了您的答案 – Fury