从iOS应用程序到php脚本,我想将一组图像存储为BLOB类型:
$profile_images = $_REQUEST['profile_images_array'];//get the array of images
//loop the images and store them one by one
foreach($profile_images as $image){
$sqlinsertimages = "insert into profile_images (id_client,image) Values ('".$id."',mysql_real_escape_string('".$image."'))";
$result = mysql_query($sqlinsertimages);
}
如果我删除了图像字段(BLOB类型),插入工作正常,所以问题显然在于表中保存的BLOB类型。
如何将PHP中的图像正确存储为BLOB?
PS:不愿意采用文件系统存储。
答案 0 :(得分:0)
好吧,我想最终的工作,不知道在将图像保存到MySQL之前我必须将图像保存到服务器:
foreach($profile_images as $image){
//Get the file as a string before inserting it to table
$content = file_get_contents($image);
$content = mysql_real_escape_string($content);
$sqlinsertimages = "insert into profile_images (id_client,image) Values ('".$id."','".$content."')";
$result = mysql_query($sqlinsertimages);
}