真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php上傳圖片到數(shù)據(jù)庫(kù),php上傳圖片到數(shù)據(jù)庫(kù)中

php圖片保存到數(shù)據(jù)庫(kù)

1.圖片轉(zhuǎn)換 將上傳的圖片讀取到一個(gè)字符串中,再用base64對(duì)數(shù)據(jù)進(jìn)行編碼 $img =base64_encode(file_get_contents($_FILES['file_head']['tmp...

成都創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供大新企業(yè)網(wǎng)站建設(shè),專(zhuān)注與做網(wǎng)站、成都做網(wǎng)站、H5頁(yè)面制作、小程序制作等業(yè)務(wù)。10年已為大新眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)的建站公司優(yōu)惠進(jìn)行中。

2.顯示圖片 imgsrc="{$base64String}" 這樣就能把圖片顯示出來(lái)了

php如何上傳圖片到數(shù)據(jù)庫(kù)

把圖片保存到服務(wù)器,拼接圖片地址

保存圖片地址到數(shù)據(jù)庫(kù)

讀取圖片地址就能訪問(wèn)到圖片了。

PHP實(shí)現(xiàn)上傳圖片到數(shù)據(jù)庫(kù)并顯示輸出的方法

本文實(shí)例講述了PHP實(shí)現(xiàn)上傳圖片到數(shù)據(jù)庫(kù)并顯示輸出的方法。分享給大家供大家參考,具體如下:

1.

創(chuàng)建數(shù)據(jù)表

CREATE

TABLE

ccs_image

(

id

int(4)

unsigned

NOT

NULL

auto_increment,

description

varchar(250)

default

NULL,

bin_data

longblob,

filename

varchar(50)

default

NULL,

filesize

varchar(50)

default

NULL,

filetype

varchar(50)

default

NULL,

PRIMARY

KEY

(id)

)engine=myisam

DEFAULT

charset=utf8

2.

用于上傳圖片到服務(wù)器的頁(yè)面

upimage.html

!doctype

html

html

lang="en"

head

meta

charset="UTF-8"

meta

name="viewport"

content="width=device-width,

user-scalable=no,

initial-scale=1.0,

maximum-scale=1.0,

minimum-scale=1.0"

meta

http-equiv="X-UA-Compatible"

content="ie=edge"

style

type="text/css"

*{margin:

1%}

/style

titleDocument/title

/head

body

form

method="post"

action="upimage.php"

enctype="multipart/form-data"

描述:

input

type="text"

name="form_description"

size="40"

input

type="hidden"

name="MAX_FILE_SIZE"

value="1000000"

br

上傳文件到數(shù)據(jù)庫(kù):

input

type="file"

name="form_data"

size="40"br

input

type="submit"

name="submit"

value="submit"

/form

/body

/html

3.

處理圖片上傳的php

upimage.php

?php

if

(isset($_POST['submit']))

{

$form_description

=

$_POST['form_description'];

$form_data_name

=

$_FILES['form_data']['name'];

$form_data_size

=

$_FILES['form_data']['size'];

$form_data_type

=

$_FILES['form_data']['type'];

$form_data

=

$_FILES['form_data']['tmp_name'];

$dsn

=

'mysql:dbname=test;host=localhost';

$pdo

=

new

PDO($dsn,

'root',

'root');

$data

=

addslashes(fread(fopen($form_data,

"r"),

filesize($form_data)));

//echo

"mysqlPicture=".$data;

$result

=

$pdo-query("INSERT

INTO

ccs_image

(description,bin_data,filename,filesize,filetype)

VALUES

('$form_description','$data','$form_data_name','$form_data_size','$form_data_type')");

if

($result)

{

echo

"圖片已存儲(chǔ)到數(shù)據(jù)庫(kù)";

}

else

{

echo

"請(qǐng)求失敗,請(qǐng)重試";

注:圖片是以二進(jìn)制blob形式存進(jìn)數(shù)據(jù)庫(kù)的,像這樣

4.

顯示圖片的php

getimage.php

?php

$id

=2;//

$_GET['id'];

為簡(jiǎn)潔,直接將id寫(xiě)上了,正常應(yīng)該是通過(guò)用戶(hù)填入的id獲取的

$dsn='mysql:dbname=test;host=localhost';

$pdo=new

PDO($dsn,'root','root');

$query

=

"select

bin_data,filetype

from

ccs_image

where

id=2";

$result

=

$pdo-query($query);

$result=$result-fetchAll(2);

//

var_dump($result);

$data

=

$result[0]['bin_data'];

$type

=

$result[0]['filetype'];

Header(

"Content-type:

$type");

echo

$data;

到瀏覽器查看已經(jīng)上傳的圖片,看是否可以顯示

是沒(méi)有問(wèn)題的,證明圖片已經(jīng)以二進(jìn)制的形式存儲(chǔ)到數(shù)據(jù)庫(kù)了

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》、《php+mysqli數(shù)據(jù)庫(kù)程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:php實(shí)現(xiàn)上傳圖片保存到數(shù)據(jù)庫(kù)的方法php上傳圖片存入數(shù)據(jù)庫(kù)示例分享php上傳圖片到指定位置路徑保存到數(shù)據(jù)庫(kù)的具體實(shí)現(xiàn)php中如何將圖片儲(chǔ)存在數(shù)據(jù)庫(kù)里php下將圖片以二進(jìn)制存入mysql數(shù)據(jù)庫(kù)中并顯示的實(shí)現(xiàn)代碼php

從數(shù)據(jù)庫(kù)提取二進(jìn)制圖片的處理代碼php將圖片保存入mysql數(shù)據(jù)庫(kù)失敗的解決方法php將圖片文件轉(zhuǎn)換成二進(jìn)制輸出的方法php圖片的二進(jìn)制轉(zhuǎn)換實(shí)現(xiàn)方法

php中如何將圖片儲(chǔ)存在數(shù)據(jù)庫(kù)里

兩種方法:

一:將圖片上傳至指定目錄,在數(shù)據(jù)庫(kù)中保存文件名和文件路徑。

二:將圖片文件讀入字符串,將字符串保存到數(shù)據(jù)庫(kù),不推薦(沒(méi)那么長(zhǎng)的字段長(zhǎng)度支持)。

php 在數(shù)據(jù)庫(kù)里上傳照片

HTML

BODY

form method="post" action="righster.php"

你的學(xué)號(hào):input type="text" name="id"br

你的姓名:input type="text" name="name"br

你的性別:inpyt type="text" name="sex"br

你的照片:input type="text" name="photo"br

input type="submit" value="send"

/BODY

/HTML

?php

$_post['id']; //這里改成$id = $_POST['id'];

$_post['name']; //這里改成$name = $_POST['name'];

$post['sex']; //這里改成$sex = $_POST['sex'];

$post['photo']; //這里改成$photo = $_POST['photo'];

$connect=mysql_connect('localhost','root','');

$select=mysql_select('class')//選數(shù)據(jù)庫(kù)

$query="insert into stu('id','name','sex','photo')values('$id','$name','$sex','$photo') ";

$result=mysql_query($query);//送出插入語(yǔ)句

$sql="select *form class";

$query==mysql_db_query('class',$sql,$connect); //多出一個(gè)=

while($object=mysql_fetch_object($query)

{echo $object-id"br";

echo $object-name"br";

echo $object-sex"br";

echo "img src="$object-photo";

}

?


網(wǎng)站標(biāo)題:php上傳圖片到數(shù)據(jù)庫(kù),php上傳圖片到數(shù)據(jù)庫(kù)中
本文URL:http://weahome.cn/article/dsejcjj.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部