|
转载请注明出处<BR><BR> 今天教给大家如何用PHP实现把图象上传到MYSQL数据库中。 在这个教程中我们需要建立3个PHP文件:<BR><BR> readdir.php - 把图片放到数据库的代码<BR> image.php - 显示实际图片的代码<BR> view.php - 显示你如何调用数据库中的图片的代码<BR><BR>1.创建一个数据库<BR><BR>CREATE TABLE `images` (<BR>`imgid` INT NOT NULL AUTO_INCREMENT ,<BR>`sixfourdata` LONGTEXT NOT NULL ,<BR> RIMARY KEY ( `imgid` ) <BR>);<BR>READDIR.PHP<BR><BR>具体的内容:<BR><?<BR>$dbcnx = mysql_connect("localhost", "username", "password"); <BR>mysql_select_db("base64imgdb");<BR>?><BR>'我们需要打开一个目录 <BR>"./"<BR>'readdir.php 文件定位于这个目录: <BR>$path = "./";<BR>$dir_handle = opendir($path)_or_die("Unable to open directory $path");<BR><BR> 下面是比较难的部分,大家需要好好研究一下:把图象分类,并且读出正在使用的一些数据 <BR><BR>fopen<BR><BR>'转换 <BR><BR>base64_encode<BR><BR>' 插入到表里 <BR><BR><?<BR>while ($file = readdir($dir_handle)) {<BR>$filetyp = substr($file, -3);<BR>if ($filetyp == 'gif'_or_$filetyp == 'jpg') {<BR>$handle = fopen($path . "/" . $file,'r');<BR>$file_content = fread($handle,filesize($path . "/" . $file));<BR>fclose($handle);<BR>$encoded = chunk_split(base64_encode($file_content)); <BR>$sql = "INSERT INTO images SET sixfourdata='$encoded'"; <BR>mysql_query($sql);<BR>}<BR>}<BR>?><BR><BR> 关闭设置的目录,然后处理: <BR><BR><?<BR>closedir($dir_handle);<BR>echo("complete");<BR>mysql_close($dbcnx);<BR>?><BR><BR> 读出图片的代码:IMAGE.PHP<BR> 这段代码比较难,我们要好好看看<BR><BR><?<BR>$dbcnx = mysql_connect("localhost", "username", "password"); <BR>mysql_select_db("base64imgdb");<BR>?><BR>我们读出图片使用的代码image.php?img=x: <BR><?<BR>$img = $_REQUEST["img"];<BR>?><BR>之后我们需要连接数据库,然后读出 <BR><?<BR>$result = mysql_query("SELECT * FROM images WHERE imgid=" . $img . ""); <BR>if (!$result) { <BR>echo("<b>请求错误: " . mysql_error() . "</b>"); <BR>exit(); <BR>} <BR>while ($row = mysql_fetch_array($result)) { <BR>$imgid = $row["imgid"];<BR>$encodeddata = $row["sixfourdata"]; <BR>}<BR>?><BR><BR><?<BR>mysql_close($dbcnx);<BR>echo base64_decode($encodeddata);<BR>?><BR><BR> 在这里我们要理解base64-encoded 图象数据格式。<BR><BR> "让我们来看看具体的图片吧!" VIEW.PHP <BR><BR>image.php?img=1<BR><BR>image.php?img=357 <BR><BR><img src='image.php?img=1' border="0" alt=""><BR><BR>看看完整的一个例子吧!<BR><BR>readdir.php: <BR><?<BR>###############################<BR># DB CONNECTION<BR># CHANGE THESE VALUES <BR>###############################<BR>$dbcnx = mysql_connect("localhost", "username", "password"); <BR>mysql_select_db("base64imgdb");<BR><BR>$path = "./";<BR>$dir_handle = opendir($path)_or_die("Unable to open directory $path");<BR>while ($file = readdir($dir_handle)) {<BR>$filetyp = substr($file, -3);<BR>if ($filetyp == 'gif'_or_$filetyp == 'jpg') {<BR>$handle = fopen($file,'r');<BR>$file_content = fread($handle,filesize($file));<BR>fclose($handle);<BR>$encoded = chunk_split(base64_encode($file_content)); <BR>$sql = "INSERT INTO images SET sixfourdata='$encoded'"; <BR>mysql_query($sql);<BR>}<BR>}<BR><BR>closedir($dir_handle);<BR>echo("complete");<BR>mysql_close($dbcnx);<BR>?><BR>image.php: <BR><?<BR>$dbcnx = mysql_connect("localhost", "username", "password"); <BR><BR>mysql_select_db("base64imgdb");<BR><BR>$img = $_REQUEST["img"];<BR><BR>$result = mysql_query("SELECT * FROM images WHERE imgid=" . $img . ""); <BR><BR>if (!$result) { <BR><BR>echo("<b>Error performing query: " . mysql_error() . "</b>"); <BR>exit(); <BR>} <BR>while ($row = mysql_fetch_array($result) ) { <BR>$imgid = $row["imgid"];<BR>$encodeddata = $row["sixfourdata"]; <BR>}<BR>mysql_close($dbcnx);<BR>echo base64_decode($encodeddata);<BR>?><BR>And view.php (i shouldnt need to post this..) <BR><html><BR><body><BR>..<BR><img src='image.php?img=1' border="0" alt=""><BR>..<BR></body><BR></html><BR> |
|