<?php
if(isset($_FILES['files']['name']))
{
foreach($_FILES['files']['name'] as $key)
{
echo $file_name = $_FILES['files']['name'][$key];
}
}
?>
<form action="test.php" method="POST" enctype="multipart/form-data">
<input type="file" name="files[]" multiple />
<input type="submit" value="submit">
</form>
我想回显文件名。但我有错误
注意:未定义索引:第 6 行 D:\xampp1\htdocs\imageupload\test.php 中的 1_t.jpg
注意:未定义索引:第 6 行 D:\xampp1\htdocs\imageupload\test.php 中的 2_t.jpg
注意:未定义索引:第 6 行 D:\xampp1\htdocs\imageupload\test.php 中的 007.jpg