当前位置:首页 > PHP教程 > php高级应用 > 列表

php图片保存入mysql数据库失败解决办法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-10 13:37:24 浏览: 评论:0 

图片保存数据库并不是一个明智的做法,我们多半是把图片保存到服务器,然后把图片地址保存到数据库,这样我们每次只要读出图片地址就可以显示了,但下面我还是来介绍一个图片保存到mysql数据库的问题解决办法,代码如下:

  1. require 'class/db.php'
  2. $fileName = "a1.jpg"
  3. $fp = fopen($fileName"r"); 
  4.  
  5. $img = fread($fpfilesize($fileName)); 
  6. fclose($fp); 
  7.  
  8. $db->execute("insert db2.testimg (`img`) values ('$img') ;"); 

报错:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`?绶q?仳!????1丶>,Mo?'^WZ4in??T春??????U?楹\?' at line 1

代码如下:

$img = fread($fp, filesize($fileName));$img = addslashes($img)

继续报错,各种搜索,百度里的结果都是addslashes,要不就是addslashes也没有的,真是扯淡啊.

base64_decode

$img = base64_encode($img);

插入成功,图片文件17.0k,出来进行base64_decode,显示正常,找到个16进制的办法:

$img = bin2hex($img);

有效,输出不用解密,存入数据库很大 25K,比base64还坑爹呢,再找,后来,后来,发现phpmyadmin直接上传的图片文件可以用文件比base64的小,文件12.8k.

翻phpmyadmin 源代码,common.lib.php文件183有个神奇的函数,代码如下:

  1. function PMA_sqlAddslashes($a_string = ''$is_like = false, $crlf = false, $php_code = false) 
  2.     if ($is_like) { 
  3.         $a_string = str_replace('\', '\\\\', $a_string); 
  4.     } else { 
  5.         $a_string = str_replace('\', '\\', $a_string); 
  6.     } 
  7.  
  8.     if ($crlf) { 
  9.         $a_string = str_replace("n"'n'$a_string); 
  10.         $a_string = str_replace("r"'r'$a_string); 
  11.         $a_string = str_replace("t"'t'$a_string); 
  12.     }//开源代码phpfensi.com 
  13.  
  14.     if ($php_code) { 
  15.         $a_string = str_replace(''', '\''$a_string); 
  16.     } else { 
  17.         $a_string = str_replace(''', '''', $a_string); 
  18.     } 
  19.  
  20.     return $a_string
  21. // end of the 'PMA_sqlAddslashes()' function$img = PMA_sqlAddslashes($img); 

文件大小12.8K 和phpmyadmin的一样大.

例,前台image.html,代码如下:

  1. <html> 
  2. <head> 
  3.   <title>上传图片</title> 
  4. </head> 
  5.  
  6. <body> 
  7. <form method="post" action="upimage.php" enctype="multipart/form-data"> 
  8.  <input type="hidden" value="204800" name="MAX_FILE_SIZE"/> 
  9.  File: <input type="file" name="imgfile" /> 
  10.  <input type="submit" value="OK" name="submitbtn" style="width:100px;height:23px"/></center> 
  11. </form> 
  12. </body> 
  13. </html> 

后台处理upimage.php代码如下:

  1. <?php 
  2.  //向数据库中插入图片 
  3.  $imgfile=$_FILES['imgfile']; 
  4.  $submitbtn=$_POST['submitbtn']; 
  5.  if($submitbtn=='OK' and is_array($imgfile)){ 
  6.  $name=$imgfile['name'];  //取得图片名称 
  7.  $type=$imgfile['type']; //取得图片类型 
  8.  $size=$imgfile['size'];  //取得图片长度 
  9.  $tmpfile=$imgfile['tmp_name'];  //图片上传上来到临时文件的路径 
  10.  if($tmpfile and is_uploaded_file($tmpfile)){  //判断上传文件是否为空,文件是不是上传的文件 
  11.   //读取图片流 
  12.   $file=fopen($tmpfile,"rb"); 
  13.   $imgdata=bin2hex(fread($file,$size));  //bin2hex()将二进制数据转换成十六进制表示 
  14.   fclose($file); 
  15.  
  16.   $mysqli=mysql_connect("localhost","root","123456″);  //连接数据库函数 
  17.   mysql_select_db("test");  //选择数据库 
  18.   //插入出数据库语句,图片数据前要加上0x,用于表示16进制数 
  19.   if(mysql_query("insert into images(name,type,image) values('".$name."','".$type."',0x".$imgdata.")")) 
  20.    echo "<center>插入成功!<br><br><a href='disimage.php'>显示图片</a></center>"
  21.   else 
  22.    echo "<center>插入失败!</center>"
  23.   mysql_close(); 
  24.  }else 
  25.  echo "<center>请先选择图片!<br><br><a href='image.html'>点此返回</a></center>"
  26. else 
  27.  echo "<center>请先选择图片!<br><br><a href='image.html'>点此返回</a></center>"
  28. ?> 

显示图片disimage.php,代码如下:

  1. <?php 
  2.  mysql_connect("localhost","root","123456″); 
  3.  mysql_select_db("test"); 
  4.  //显示最新插入的那张图片 
  5.  $result=mysql_query("select image from images where id=(select max(id) from images)"); 
  6.  $row=mysql_fetch_object($result); 
  7.  header("Content-Type:image/pjpeg"); 
  8.  echo $row->image; 
  9.  mysql_close(); 
  10. ?> 

结论:

PMA_sqlAddslashes好用 文件12.8k 和原来图片一样大

bin2hex 16进制 好用文件25K

base64_encode 好用,出来的文件需要base64_decode 17K

addslashes 不好用,继续报错,注明,在某些windows机器上addslashes好用.

Tags: 图片保存入mysql mysql失败

分享到: