How can I know a number of uploaded files with PHP?(我如何知道使用 PHP 上传的文件数量?)
问题描述
我有一个表格,里面有几个
I have a form with several
input type="file"
标签.我如何在服务器端知道用户上传的文件数量.他可以上传3个文件,或者可能是5个文件,1个甚至什么都没有.我需要知道用户上传了多少文件.
tags. How can I know on the server side amount of files uploaded by the user. He can upload 3 files, or may be 5 files, 1 or even nothing. I need to know how much files user have uploaded.
推荐答案
如果您输入的上传标签名称为 file1
, file2
则
If you are having input upload tags with name like file1
, file2
then
if($_FILES['file1']['size'] > 0)
echo "User uploaded some file for the input named file1"
现在对于许多文件(查看您的输出),像这样运行 foreach 循环:-
Now for many files (looking at the output you are having), run a foreach loop like this:-
$cnt=0;
foreach($_FILES as $eachFile)
{
if($eachFile['size'] > 0)
$cnt++;
}
echo $cnt." files uploaded";
我不确定为什么 我如何知道使用 PHP 上传的文件数量? 被否决了?对于'0'?
I am not sure why the similar answer in How can I know a number of uploaded files with PHP? got downvoted? For the '0' ?
这篇关于我如何知道使用 PHP 上传的文件数量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我如何知道使用 PHP 上传的文件数量?
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01