I have created a upload form It's working fine while I am uploading small files. The html form is not working When I am trying to upload large files. Have you ever experienced this?
2条回答 默认 最新
dsjuimtq920056 2015-04-28 05:36关注Depending on you php version, you could try something like:
ini_set('post_max_size', '32M'); ini_set('upload_max_filesize', '32M'); ini_set('memory_limit', '32M');just replace "32" with your desired maximum size.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报