douchongzhang9267 2018-06-03 07:15
浏览 29
已采纳

MySQL BLOB只接受图像吗?

Does MySQL BLOB only accept images?

I have been looking online trying to be able to upload larger file sizes of different formats, but I only come across image tutorials.

I have the code below, which fails on the if statement and returns the echo when I upload different file types larger than 10 megs. (the column is LONGBLOB).

<?php
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 'On');  //On or Off

 session_start();
 require_once('connect.php');

    if(isset($_POST['submit'])){
         $file = rand(1000,100000)."-".$_FILES['file']['name'];
         $notes = mysqli_real_escape_string($connection,$_POST['notes']);
         $file_loc = $_FILES['file']['tmp_name'];
         $file_size = $_FILES['file']['size'];
         $file_type = $_FILES['file']['type'];

         $email = mysqli_real_escape_string($connection, $_SESSION['email']);
         $folder="uploads/";

          move_uploaded_file($file_loc,$folder.$file);

            $sql = "INSERT INTO `supportcontent` (`scontentdata`, `scontentnotes`, `suseremail`, `stype`,`ssize`)
            VALUES( '$file','$notes','$email','$file_type ','$file_size')";

            $current_id = mysqli_query($connection, $sql) 
            or die("<b>Error:</b> Problem on Image Insert<br/>" . mysqli_error($connection));
            if (isset($current_id)) {
                header("Location: landingpage.php?upload=success");
            }
        }
        else{       
            echo 'file is 0';
        }   
?>
  • 写回答

2条回答 默认 最新

  • duanchen1937 2018-06-03 07:39
    关注

    Does MySQL BLOB only accept images?

    No, you can store anything you want in it. What's failing when you try to upload a file over 10MB is not the SQL, but the PHP code. Either:

    1. the files size limit. Check the value of the upload_max_filesize and post_max_size settings in the php.ini file.

    2. or the operation timing out. This is more likely to be the culprit especially if you've never changed the default values in your php.ini file. The default timeout in PHP is 30 seconds, so your file must be uploaded in less than 30 seconds. You can change it in the php.ini file using the max_execution_time setting, or it is better to change it in you code using the set_time_limit() function.

    Example, to set the timeout to 2 minutes:

    set_time_limit(120);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考