<input type="file" name="some-img">
表单提交到服务器,就是$_files["some-img"]
那要是
<input type="file" name="some-img[]" multiple>
传到后台改怎么写啊?
后台是PHP
表单提交到服务器,就是$_FILES["some-img"]
那要是
<input type="file" name="some-img[]" multiple>
传到后台改怎么写啊?
后台是PHP
HTML:
<input name="upload[]" type="file" multiple="multiple" />
PHP:
// Count # of uploaded files in array
$total = count($_FILES['upload']['name']);
// Loop through each file
for($i=0; $i<$total; $i++) {
//Get the temp file path
$tmpFilePath = $_FILES['upload']['tmp_name'][$i];
//Make sure we have a filepath
if ($tmpFilePath != ""){
//Setup our new file path
$newFilePath = "./uploadFiles/" . $_FILES['upload']['name'][$i];
//Upload the file into the temp dir
if(move_uploaded_file($tmpFilePath, $newFilePath)) {
//Handle other code here
}
}
}var_dump($_FLIE);
把变量打印出来看看结构就知道怎么接受了
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号