upload and Download in YII2

Can anybody explain how to download file

if file path /frontend/web/uploads.

file name is : sample.pdf

actual link :/frontend/web/uploads/sample.pdf.

what are the code for downloading the given file.

For download you can try:




$path = Yii::getAlias('@webroot') . '/uploads',

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

if (file_exists($file)) {

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

}



1 Like