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)
如果下载花费太多时间,我会发现2种可能性
ini_set('max_execution_time', 5*60); // 5 minutes
if (file_exists($file)) {
Yii::$app->response->xSendFile($file);
}