如何使用 php 将图像上传到我的 mysql 数据库?

Posted

技术标签:

【中文标题】如何使用 php 将图像上传到我的 mysql 数据库?【英文标题】:How do i upload an image to my mysql database with php? [duplicate] 【发布时间】:2017-12-07 17:01:01 【问题描述】:

我知道我应该使用 LONGBLOB,并且到目前为止我已经编写了这段代码来将文本上传到我的服务器。如何上传图片而不是文字?

//if(isset...)
$connectionText = mysql_connect("localhost", "root");

if(!$connectionText)
die("Noget gik galt?". mysql_connect_error());

mysql_select_db("textbox", $connectionText);

$t = $_POST['tekst'];

$sqlScript = "INSERT INTO form (tekst) VALUES ('$t')";

mysql_query($sqlScript, $connectionText);
mysql_close($connectionText);

它应该保存mysql数据库的路径。图像应存储在服务器的计算机上。

【问题讨论】:

请不要使用mysql函数!考虑改用 mysqli。 How to upload images into MySQL database using php code的可能重复 Upload Image using Php and mySQL的可能重复 我如何上传图片而不是文本? 那么您不将图像存储在数据库中,只需将图像存储在文件系统中,然后将路径存储在数据库中.或为您自己找一个图像 CDN 并将它们托管在那里 是的,我现在知道了,哈哈。我现在正在切换到 mysqli。谢谢你提醒我。 【参考方案1】:

您不需要将图像直接存储到数据库中。只需将图像名称存储在数据库中,并在您想要显示时获取它。 例如

$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) 
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) 
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
     else 
        echo "File is not an image.";
        $uploadOk = 0;
    

// Check if file already exists
if (file_exists($target_file)) 
    echo "Sorry, file already exists.";
    $uploadOk = 0;

// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) 
    echo "Sorry, your file is too large.";
    $uploadOk = 0;

// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) 
    echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
    $uploadOk = 0;

// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) 
    echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
 else 
    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) 
        // execute your insert query here
       $sqlScript = "INSERT INTO form (image) VALUES ('".basename( $_FILES["fileToUpload"]["name"])."')";


     else 
        echo "Sorry, there was an error uploading your file.";
    

【讨论】:

首先停止使用mysql_*函数。它们容易受到 SQL 注入的攻击 您的代码也是如此 这其实很聪明。删除文件大小检查后,代码就像一个魅力。但是我如何显示文件。它只是在所有图像的数据库中显示 [BLOB - 19 B]? 好的,我试试用 mysqli 写 ;)【参考方案2】:

替代方案:将图像转换为 base64 格式并像文本一样保存。

$connectionText = mysql_connect("localhost", "root");

if(!$connectionText)
die("Noget gik galt?". mysql_connect_error());

mysql_select_db("textbox", $connectionText);

$image_string = base64_encode(file_get_contents($myimage));

$sqlScript = "INSERT INTO form (images) VALUES ('$image_string')";

mysql_query($sqlScript, $connectionText);
mysql_close($connectionText);

【讨论】:

不完全是我想要的,但仍然是一个有趣的想法;)

以上是关于如何使用 php 将图像上传到我的 mysql 数据库?的主要内容,如果未能解决你的问题,请参考以下文章

考虑到我的图像的链接存储在 MySQL 数据库中,如何通过 php 显示存储在文件夹中的图像

使用 PHP 将本机图像上传到 MySQL

如何在 react 中使用 graphene-django 和 axios 将图像上传到我的服务器?

如何在php中减小图像大小?

我如何将这个新生成的图像上传到我的 localhost/images/

如何使用 PHP CodeIgniter 将 CSV 数据导入 MYSQL 数据库?