php图片保存到数据库

php图片保存到数据库,第1张

1.图片转换 将上传的图片读取到一个字符串中,再用base64对数据进行编码 $img =base64_encode(file_get_contents($_FILES['file_head']['tmp...

2.显示图片 <imgsrc="{$base64String}">这样就能把图片显示出来了

保存图片到数据库做什么?保存到本地使用起来也方便,真要保存通过base64字符串保存。

<?php

header('Content-type:text/htmlcharset=utf-8')

//读取图片文件,转换成base64编码格式

$image_file = './image123.jpg'

$image_info = getimagesize($image_file)

$base64_image_content = "data:{$image_info['mime']}base64," . chunk_split(base64_encode(file_get_contents($image_file)))

// $base64_image_content 输入到数据库

//保存base64字符串为图片

//匹配出图片的格式

if (preg_match('/^(data:\s*image\/(\w+)base64,)/', $base64_image_content, $result)){

  $type = $result[2]

  $new_file = "./test.{$type}"

  if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))){

    echo '新文件保存成功:', $new_file

  }

}

?> <img src="<?php echo $base64_image_content?>" />

笔者是在ubuntu环境下测试的:首先创建一个查询语句的文件

如query.sql(名字你自己取),内容大致如下:use

datebase_name

//不解释了吧

select

xxx

from

table

where

where-condition....

//就是一个你需要查询的语句保存好,现在开始 *** 作:#mysql

-h

服务器ip地址

-u

用户名

-p密码

-p

端口

输出的文件名demo:

mysql

-h

127.0.0.1

-u

root

-p

1234

-p

3300

/home/michael/test.txt好了,现在你可以在对应的目录中找到你想要的文件了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9974193.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存