我的php.ini:Yii2最大文件大小
upload_max_filesize = 10M
我的模型:
public function rules()
{
return [
[['user_id', 'name', 'description', 'image'], 'required'],
[['user_id', 'is_active'], 'integer'],
[['date_of_creation'], 'safe'],
[['name'], 'string', 'max' => 256],
[['description'], 'string', 'max' => 512],
[['players', 'level', 'time', 'best_time', 'fear', 'stress', 'teamwork', 'fun'], 'string', 'max' => 128],
['image', 'image', 'extensions' => 'jpg, gif, png, jpeg', 'maxSize' => 1024*1024*10, 'minWidth' => 100, 'minHeight' => 100],
];
}
我的錯誤:
Array ([image] => Array ([0] => The file "original_girl.jpg" is too big. Its size cannot exceed 2,097,152 bytes.))
可以enybody說有什麼不對?在php.ini和我的模型的規則中,我使用10 MB。
upload_max_filesize in php.ini? –
@SarDauMort 100MB –