Uploading a file larger than 2GB using PHP

前端 未结 6 1960
情歌与酒
情歌与酒 2020-12-01 16:50

I\'m trying to upload a file larger than 2GB to a local PHP 5.3.4 server. I\'ve set the following server variables:

         


        
6条回答
  •  误落风尘
    2020-12-01 17:54

    I figure out how to use http and php to upload a 10G file.

    php.ini:

    post_max_size = 0
    upload_max_filesize = 0
    

    It works in php 5.3.10.

    if you do not load that file all into memory , memory_limit is unrelated.

提交回复
热议问题