繁花如伊
如果是下载文件,用自带函数就可以了!我要的效果是图片在浏览器直接显示。像下面这样写就可以了Yii::$app->response->format = \yii\web\Response::FORMAT_RAW; //这句是新加的Yii::$app->response->content = file_get_contents($file);Yii::$app->response->headers->set('Content-Type', \yii\helpers\FileHelper::getMimeType($file));Yii::$app->end();还有一种方法:Yii::$app->response->sendFile($file, null, ['inline' => true]);inline参数为true就是让浏览器显示,默认false,是下载。