作为注册过程的一部分,我们需要让用户上传一张图片。
曾尝试在控制器中访问 $_FILES['filename'],结果在 slim 下未定义。
在几篇文章中看到了 Slim 的文件上传方式,据报道这些文章是有效的,但我碰壁了。
树枝部分适用于Bootstrap 文件输入库
对于使用Slim 文件上传库的服务器部分
控制器代码(对 AccountController 的修改)如下所示
...
$storage = new \Upload\Storage\FileSystem('c:/xampp/htdocs/userfrosting/public/images/');
$file = new \Upload\File('imagefile', $storage);
$new_filename = 'test.jpg';
$file->setName($new_filename);
$file->addValidations(array(
// Ensure file is of type "image/jpg"
new \Upload\Validation\Mimetype('image/jpg'),
// Ensure file is no larger than 500K (use "B", "K", M", or "G")
new \Upload\Validation\Size('500K')
));
// Access data about the file that has been uploaded
$uploadfiledata = array(
'name' => $file->getNameWithExtension(),
'extension' => $file->getExtension(),
'mime' => $file->getMimetype(),
'size' => $file->getSize(),
'md5' => $file->getMd5(),
'dimensions' => $file->getDimensions()
);
error_log('$uploadfiledata' . print_r($uploadfiledata, true));
// Try to upload file
try {
// Success!
$file->upload();
} catch (\Exception $e) {
// Fail!
$errors = $file->getErrors();
}
...
这将返回以下错误,
类型:无效参数异常
消息:找不到键识别的上传文件:imagefile
文件:C:\xampp\htdocs\userfrosting\userfrosting\vendor\codeguy\upload\src\Upload\File.php
线路:139
相关的树枝块是
<input id="imagefile" type="file" name="imagefile" class="file" data-show-upload="false">
有没有人能够让文件上传作为任何 Userfrosting 代码的一部分工作?
感谢任何帮助/指针。
谢谢!