php文件上传$_FILES数组格式

<form action="" enctype="multipart/form-data" method="post">
  <input type="file" name="image" /> <br>
  <input type="submit" value="上传" />
</form>

php文件上传$_FILES数组格式

<form action="" enctype="multipart/form-data" method="post">
  <input type="file" name="image[]" /> <br>
  <input type="file" name="image[]" /> <br>
  <input type="file" name="image[]" /> <br>
  <input type="submit" value="上传" />
</form>

相关文章:

  • 2022-12-23
  • 2021-10-25
  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-25
  • 2021-08-20
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-03-03
相关资源
相似解决方案