Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/image/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php上传脚本_Php_Image_File Upload_Upload - Fatal编程技术网

Php上传脚本

Php上传脚本,php,image,file-upload,upload,Php,Image,File Upload,Upload,我在这里有一个php上传脚本: <?php include_once 'sessions.php'; include_once 'connect.php'; if (isset($_POST['submit-post'])) { $j = 0; // Variable for indexing uploaded image. $target_path = "../photos/"; // Declaring Path for uploaded images. for ($

我在这里有一个php上传脚本:

<?php include_once 'sessions.php';
include_once 'connect.php';
if (isset($_POST['submit-post'])) {
$j = 0;     // Variable for indexing uploaded image.
$target_path = "../photos/";     // Declaring Path for uploaded images.

for ($i = 0; $i < count($_FILES['file']['name']); $i++) {   // Loop to get individual element from the array
$validextensions = array("jpeg", "jpg", "png");      // Extensions which are allowed.
$ext = explode('.', basename($_FILES['file']['name'][$i]));   // Explode file name from dot(.)
$file_extension = strtolower(end($ext)); // Store extensions in the variable.
$target_path = $target_path . md5(uniqid()) . "." . $ext[count($ext) - 1];     // Set the target path with a new name of image.
$j = $j + 1;      // Increment the number of uploaded images according to the files in array.

if (($_FILES["file"]["size"][$i] < 2000000)){     // Approx. 1mb files can be uploaded.

if (in_array($file_extension, $validextensions)) {

    if (move_uploaded_file($_FILES['file']['tmp_name'][$i], $target_path)) { // If file moved to uploads folder.
        $_SESSION['upload-message'] = $j. "&nbsp; &nbsp; File(s) successfully uploaded :)";
        header("Location: ../index");
        exit;
    } else {     //  If File Was Not Moved.
        $_SESSION['upload-message'] = $j. "&nbsp; &nbsp; Files couldn't be uploaded. Please try again.";
        header("Location: ../index");
        exit;
    }
 } else {     //   If File Type Was Incorrect.
    $_SESSION['upload-message'] = $j. "&nbsp; &nbsp; Invalid file type. Only jpg, jpeg or png.";
    header("Location: ../index");
    exit;
}
} else {    // If File Size was exceeded
$_SESSION['upload-message'] = $j. "&nbsp; &nbsp; Invalid file size. Maximum size = 1 mb";
header("Location: ../index");
exit;
}
}
}
?>

我的HTML代码如下所示:

<form action="includes/new-post.php" class="dropzone" enctype="multipart/form-data" method="post" id="photo-form">
<input id="file" type="file" class="post-photo" name="file[]" multiple="" style="display: none"/>
</form>
....
<input type="submit" name="submit-post" value="post" class="create-new-post" form="photo-form">

....
表单确实包含多个这样的文件,但上载脚本只上载一张照片,而不是一个数组

我的循环有问题吗

谢谢你的帮助


干杯克里斯

只需在设置会话和重定向的移动上传的文件()功能后检查循环即可。所以,一旦上传第一张图片,它就会重定向

你可以参观