Max file number can php upload at same time(最大文件数可以同时php上传)
问题描述
我正在使用标签用于使用 php 上传多个文件.我注意到如果我选择超过 20 个文件,php 只会上传前 20 个文件.有没有办法扩大这个限制?
I am using the tag for uploading multiple files with php. I notice that if i choose more than 20 files php uploads only the first 20 files.Is there a way to expand this limit?
推荐答案
此限制是在 PHP 5.3.1 中添加的,以避免一种 DOS 攻击:临时文件耗尽.
This limit was added in PHP 5.3.1, to avoid a type of DOS attack: temporary files exhaustion.
添加了max_file_uploads"INI 指令,可以将每个请求的文件上传数量默认限制为 20,以防止可能通过临时文件耗尽的 DOS.(伊利亚)
Added "max_file_uploads" INI directive, which can be set to limit the number of file uploads per-request to 20 by default, to prevent possible DOS via temporary file exhaustion. (Ilia)
(PHP 5.3.1 的变更日志)
(changelog for PHP 5.3.1)
您可以通过更改 max_file_uploads
指令.
You can increase this limit by changing the max_file_uploads
directive.
这篇关于最大文件数可以同时php上传的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:最大文件数可以同时php上传


基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01