Response :: download()在Laravel 4中不起作用

时间:2016-07-14 19:07:07

标签: php laravel laravel-4

我正在尝试使用它:Response :: download()来下载文件,我正在使用Laravel 4,这里是我的代码:

public function download_file($file)
{
      $file = 'myfile.pdf';

      //-- public/docs/myfile.pdf
      $path = public_path(). '/docs/' . $file;

      $headers = array(
        'Content-Type' => 'application/pdf',
      );

    return Response::download($path, $file, $headers);
} 

我得到的错误: 文件“C:\ Users \ myuser \ Workbench \ Web \ sites \ mysite \ public / docs / myfile.pdf”不存在

我出了什么问题?

谢谢!

0 个答案:

没有答案