时间:2021-07-01 10:21:17 帮助过:6人阅读
index_uploads
index_uploads.php
";
print_r($_FILES);
echo "";
$count = count($_FILES['file']['name']);
for ($i = 0; $i < $count; $i++) {
$tmpfile = $_FILES['file']['tmp_name'][$i];
$filefix = array_pop(explode(".", $_FILES['file']['name'][$i]));
$dstfile = "uploads/files/".time()."_".mt_rand().".".$filefix;
if (move_uploaded_file($tmpfile, $dstfile)) {
echo "";
} else {
echo "";
}
}
uploads.php
http://www.bkjia.com/PHPjc/1093105.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1093105.htmlTechArticlephp基础练习--多文件上传, htmlhead meta charset="utf-8" titleindex_uploads/title/headbody form action="uploads.php" method="post" enctype="multipart/form-data" input type...