Yii2下载文件功能

ron*_*vid 6 pdf transactions file download yii2

我需要从文件夹/ uploads下载文件,但是调用操作时我只会收到timeOut错误,任何人都可以帮助我:(

   public function actionDownload() {
   $path = Yii::getAlias('@webroot') . '/uploads';

   $file = $path . '/1.pdf';

   if (file_exists($file)) {

   Yii::$app->response->sendFile($file);

  } 
}
Run Code Online (Sandbox Code Playgroud)

Mat*_*Mat 5

如果下载花费太多时间,我会发现2种可能性

  • 您可以增加脚本的最大执行时间。这不是最佳解决方案,因为脚本仍然会因文件太大而超时,但这是最简单的解决方案(可能存在与您的问题无关的性能考虑)。为此:

ini_set('max_execution_time', 5*60); // 5 minutes

if (file_exists($file)) { Yii::$app->response->xSendFile($file); }