image.php文件
複製代碼 代碼如下:
$c or die("服務器連接錯誤!"); //連結資料庫
@mysql_select_db("upload",$conn) or die("未發現資料庫!");
$query="select * from upfile where ftag=$fn" ;
$result=mysql_query($query);
if(!$result) die("error: mysql query");
$num=mysql_num_rows($result);
if($ num$data = mysql_result($result,0,"picture");
header("Content-type: image/JPEG",true) ;
echo $data;
?>
複製代碼 程式碼如下:
以上就介紹了十進制轉二進制 php 從資料庫提取二進位圖片的處理代碼,包括了十進制轉二進制方面的內容,希望對PHP教程有興趣的朋友有所幫助。