1. 컨트롤러 인터페이스에 로드
use yii\web\UploadedFile;
$file = UploadedFile::getInstanceByName('photo'); //保存路径 $path = 'images/'; //判断文件是否存在 if(!file_exists($path)){ mkdir($path); } //重命名文件名 $file_name = date('Y-m-d').mt_rand(0000,9999).'.'.$file; $new_path= $path.$file_name; $file->saveAs($new_path,true);
위의 내용은 Yii20 파일 업로드에 대한 내용을 포함하여 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.