1. <tfoot id='PxaLz'></tfoot>

        <bdo id='PxaLz'></bdo><ul id='PxaLz'></ul>
    1. <legend id='PxaLz'><style id='PxaLz'><dir id='PxaLz'><q id='PxaLz'></q></dir></style></legend>
    2. <i id='PxaLz'><tr id='PxaLz'><dt id='PxaLz'><q id='PxaLz'><span id='PxaLz'><b id='PxaLz'><form id='PxaLz'><ins id='PxaLz'></ins><ul id='PxaLz'></ul><sub id='PxaLz'></sub></form><legend id='PxaLz'></legend><bdo id='PxaLz'><pre id='PxaLz'><center id='PxaLz'></center></pre></bdo></b><th id='PxaLz'></th></span></q></dt></tr></i><div id='PxaLz'><tfoot id='PxaLz'></tfoot><dl id='PxaLz'><fieldset id='PxaLz'></fieldset></dl></div>

      <small id='PxaLz'></small><noframes id='PxaLz'>

    3. 如何上传大文件 &gt;Laravel 5 中的 5MB

      时间:2023-05-21

        <legend id='2aGJ0'><style id='2aGJ0'><dir id='2aGJ0'><q id='2aGJ0'></q></dir></style></legend>
          <bdo id='2aGJ0'></bdo><ul id='2aGJ0'></ul>
          • <small id='2aGJ0'></small><noframes id='2aGJ0'>

                  <tbody id='2aGJ0'></tbody>
              1. <i id='2aGJ0'><tr id='2aGJ0'><dt id='2aGJ0'><q id='2aGJ0'><span id='2aGJ0'><b id='2aGJ0'><form id='2aGJ0'><ins id='2aGJ0'></ins><ul id='2aGJ0'></ul><sub id='2aGJ0'></sub></form><legend id='2aGJ0'></legend><bdo id='2aGJ0'><pre id='2aGJ0'><center id='2aGJ0'></center></pre></bdo></b><th id='2aGJ0'></th></span></q></dt></tr></i><div id='2aGJ0'><tfoot id='2aGJ0'></tfoot><dl id='2aGJ0'><fieldset id='2aGJ0'></fieldset></dl></div>
                <tfoot id='2aGJ0'></tfoot>
              2. 本文介绍了如何上传大文件 &gt;Laravel 5 中的 5MB的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我可以知道如何在 Laravel 5 中上传超过 5Mb 的大文件吗?我正在尝试上传大约 10MB 的图像文件但它没有上传,我搜索了很多并更新了 php.ini

                May I know how to upload large file, more than 5Mb in Laravel 5? I am trying to upload around 10MB image file but it is not uploading, I searched a lot and updated following settings in php.ini

                post_max_size = 500M;
                memory_limit = 500M;
                upload_max_filesize = 500M
                

                我已重新启动 Apache 服务器,但仍有问题.php.ini 或 Laravel 中是否还有其他设置可以上传大文件?请帮忙.

                I have restarted Apache server but still having issue. Is there any other setting in php.ini or in Laravel to upload large files? Please help.

                编辑

                $image = $request->file('image');
                
                            if($image && $image != '') {
                
                                $extension  = $image->getClientOriginalExtension();
                                $imageName = $this->getUniqueName($extension);
                                $image->move('gimages/profile_images/', $imageName);
                                $profile_image = $imageName;
                                $update_user_data['image'] = $profile_image;
                            }
                

                非常感谢!

                推荐答案

                如果你想上传大文件,你应该使用流.这是执行此操作的代码:

                If you want to upload big files you should use streams. Here’s the code to do it:

                $disk = Storage::disk('s3');
                $disk->put($targetFile, fopen($sourceFile, 'r+'));
                

                即使您上传几 GB 的文件,PHP 也只需要几 MB 的 RAM.

                PHP will only require a few MB of RAM even if you upload a file of several GB.

                来源:https://murze.be/2015/07/upload-large-files-to-s3-using-laravel-5/

                有关 Storage 的用法和配置,请参阅 Lrvl5 文档:https://laravel.com/docs/5.0/filesystem

                See Lrvl5 doc for usage and config of Storage : https://laravel.com/docs/5.0/filesystem

                这篇关于如何上传大文件 &gt;Laravel 5 中的 5MB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:在使用 PHP 上传图像之前检查图像尺寸(高度和宽 下一篇:PHP 上传大小及其对帖子大小和内存限制的影响

                相关文章

                最新文章

                  <bdo id='cxTz6'></bdo><ul id='cxTz6'></ul>
              3. <legend id='cxTz6'><style id='cxTz6'><dir id='cxTz6'><q id='cxTz6'></q></dir></style></legend>

              4. <small id='cxTz6'></small><noframes id='cxTz6'>

              5. <i id='cxTz6'><tr id='cxTz6'><dt id='cxTz6'><q id='cxTz6'><span id='cxTz6'><b id='cxTz6'><form id='cxTz6'><ins id='cxTz6'></ins><ul id='cxTz6'></ul><sub id='cxTz6'></sub></form><legend id='cxTz6'></legend><bdo id='cxTz6'><pre id='cxTz6'><center id='cxTz6'></center></pre></bdo></b><th id='cxTz6'></th></span></q></dt></tr></i><div id='cxTz6'><tfoot id='cxTz6'></tfoot><dl id='cxTz6'><fieldset id='cxTz6'></fieldset></dl></div>

                  <tfoot id='cxTz6'></tfoot>