我目前在Laravel上工作,并且创建了一个符号链接,该链接使用以下方式将公共目录连接到存储:
php artisan storage:link
在目录内,我还有一个名为user_uploads
的文件夹,用于保存用户上传的文件。我有一个看起来像这样的输入字段:
<input type="file" name="image[]" id="imgInp" accept="image/jpeg, image/png, image/bmp, image/svg" multiple="multiple">
我验证文件,然后执行的操作是
$image = $request->image;
if($image){
foreach($image as $image){
$image = (array) $image; //convert the object to array
// Now, I need to create the directory here and save the image(s) there
// And, I have to name the folder the id of the row (row means the row of the database where the entry is saved).
}
}else{
return "No image selected";
}
那么,我该怎么做呢?顺便说一句,我想要的文件夹是:
myProject/public/storage/user_uploads
。
答案 0 :(得分:0)
您的问题还不清楚,如果您已经参考了文档,那么实现起来并不难。
根据文档,您可以这样做:refer here
Storage :: makeDirectory($ directory);
$directory
是要创建目录的路径,例如:
Storage::makeDirectory("myProject/public/storage/user_uploads/directory_you_want_to_create");