Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/248.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 SQL中上载图像_Php_Sql_File Upload - Fatal编程技术网

在PHP SQL中上载图像

在PHP SQL中上载图像,php,sql,file-upload,Php,Sql,File Upload,我的上传脚本有问题,希望有人能帮我 <?php if(isset($_POST['submit'])){ // Include the database configuration file include_once 'dbconfig.php'; // File upload configuration $targetDir = "uploads/"; $allowTypes = array('jpg','png','jpeg','gif');

我的上传脚本有问题,希望有人能帮我

<?php
if(isset($_POST['submit'])){
    // Include the database configuration file
    include_once 'dbconfig.php';

    // File upload configuration
    $targetDir = "uploads/";
    $allowTypes = array('jpg','png','jpeg','gif');


    $statusMsg = $errorMsg = $insertValuesSQL = $errorUpload = $errorUploadType = '';
    if(!empty(array_filter($_FILES['files']['name']))){
        foreach($_FILES['files']['name'] as $key=>$val){
            // File upload path
            $fileName = basename($_FILES['files']['name'][$key]);
            $targetFilePath = $targetDir . $fileName;

            // Check whether file type is valid
            $fileType = pathinfo($targetFilePath,PATHINFO_EXTENSION);
            if(in_array($fileType, $allowTypes)){
                // Upload file to server
                if(move_uploaded_file($_FILES["files"]["tmp_name"][$key], $targetFilePath)){
                    // Image db insert sql
                    $insertValuesSQL .= "('".$fileName."', NOW()),";

                }else{
                    $errorUpload .= $_FILES['files']['name'][$key].', ';

                }
            }else{
                $errorUploadType .= $_FILES['files']['name'][$key].', ';
            }
        }

        if(!empty($insertValuesSQL)){
            $insertValuesSQL = trim($insertValuesSQL,',');
            // Insert image file name into database
            $insert = $db->query("INSERT INTO images (file_name, uploaded_on) VALUES $insertValuesSQL");
            if($insert){
                $errorUpload = !empty($errorUpload)?'Upload Error: '.$errorUpload:'';
                $errorUploadType = !empty($errorUploadType)?'File Type Error: '.$errorUploadType:'';
                $errorMsg = !empty($errorUpload)?'<br/>'.$errorUpload.'<br/>'.$errorUploadType:'<br/>'.$errorUploadType;
                $statusMsg = "Files are uploaded successfully.".$errorMsg;
            }else{
                $statusMsg = "Sorry, there was an error uploading your file.";
            }
        }

    }else{
        $statusMsg = 'Please select a file to upload.';
    }

    // Display status message
    echo $statusMsg;

}
?>

<html>
<form action="" method="post" enctype="multipart/form-data">
    Select Image Files to Upload:
    <input type="file" name="files[]" multiple>

    <input class="upload-btn" type="submit" name="submit" value="UPLOAD">
</form>
</html>

选择要上载的图像文件:
如果我单击提交按钮,但未选择任何图像,则代码打印
请在屏幕上选择要上载的文件。

如果我用选中的图像点击提交按钮,代码不会显示任何内容,也不会上传任何图像


出什么问题了?

似乎没有正确访问文件数组。试试这个代码块

if(!empty($_FILES)){
    foreach($_FILES as $key=>$val){
        // File upload path
        $fileName = basename($val['name']);
        $targetFilePath = $targetDir . $fileName;

        // Check whether file type is valid
        $fileType = pathinfo($targetFilePath,PATHINFO_EXTENSION);
        if(in_array($fileType, $allowTypes)){
            // Upload file to server
            if(move_uploaded_file($val["tmp_name"], $targetFilePath)){
                // Image db insert sql
                $insertValuesSQL .= "('".$fileName."', NOW()),";

            }else{
                $errorUpload .= $val['name'].', ';

            }
        }else{
            $errorUploadType .= $val['name'].', ';
        }
    }
 }

以下是我对您的问题的说明:

1) 确保上载文件夹正确无误:

// File upload configuration
$targetDir = "uploads/";
在这种情况下,上载文件夹应与上载脚本处于同一级别

|--uploads
|
|--your_upload_script.php
|
2) 我删除了你的数据库脚本。它起作用了

<!DOCTYPE html>
<html>
<head>
<!--    <script type="text/javascript" src="asset/js/jquery-3.2.1.min.js"></script>-->
</head>
<body>
<form action="" method="post" enctype="multipart/form-data">
    Select Image Files to Upload:
    <input type="file" name="files[]" multiple>
    <input class="upload-btn" type="submit" name="submit" value="UPLOAD">
</form>
<script type="text/javascript">
</script>

<?php
if(isset($_POST['submit'])){
    // Include the database configuration file
    //include_once 'dbconfig.php';

    // File upload configuration
    $targetDir = "uploads/";
    $allowTypes = array('jpg','png','jpeg','gif');


    $statusMsg = $errorMsg = $insertValuesSQL = $errorUpload = $errorUploadType = '';
    if(!empty(array_filter($_FILES['files']['name']))){
        foreach($_FILES['files']['name'] as $key=>$val){
            // File upload path
            $fileName = basename($_FILES['files']['name'][$key]);
            $targetFilePath = $targetDir . $fileName;

            // Check whether file type is valid
            $fileType = pathinfo($targetFilePath,PATHINFO_EXTENSION);
            if(in_array($fileType, $allowTypes)){
                // Upload file to server
                if(move_uploaded_file($_FILES["files"]["tmp_name"][$key], $targetFilePath)){
                    // Image db insert sql
                    $insertValuesSQL .= "('".$fileName."', NOW()),";

                }else{
                    $errorUpload .= $_FILES['files']['name'][$key].', ';

                }
            }else{
                $errorUploadType .= $_FILES['files']['name'][$key].', ';
            }
        }

    }else{
        $statusMsg = 'Please select a file to upload.';
    }

    // Display status message
    echo $statusMsg;

}
?>
</body>
</html>
如果要上载多个文件,请参见以下示例:


也包括HTML中的标记可能缺少enctype属性,因此,提供HTML代码会有所帮助。我们需要查看包含
的HTML表单是否没有操作?提交表单要做什么?操作在同一页上。
$_FILES["files"]["error"][$key]
#Check some cases:
   case UPLOAD_ERR_OK:
        break;
    case UPLOAD_ERR_NO_FILE:
        throw new RuntimeException('No file sent.');
    case UPLOAD_ERR_INI_SIZE:
    case UPLOAD_ERR_FORM_SIZE:
        throw new RuntimeException('Exceeded filesize limit.');
    default:
        throw new RuntimeException('Unknown errors.');