我正在开展一个项目,我可以选择一个图像(简单文件选择)并通过JSON将其发送到PHP MySQL插页。
上传页面如下所示:
if (input.files && input.files[0]) {
var FR = new FileReader();
FR.onload = function(e) {
$('#img').attr("src", e.target.result);
var Naam = $('input[type=file]').val();
$('#base').text(e.target.result);
var Foto = e.target.result;
var Barcode = $('#barcode').val();
obj['Barcode'] = Barcode;
obj['Naam'] = Naam;
obj['Foto'] = Foto;
//execute ajax send
$.ajax({
url : 'insert.php',
type : 'POST',
data : obj,
dataType : 'json',
success : function(msg) {
alert("msg");
}
});
//$.post("insert.php", obj, function (data) {}, "json");
//alert("msg");
};
FR.readAsDataURL(input.files[0]);
和我的PHP页面:
$Barcode = $_POST["Barcode"];
$Naam = $_POST["Naam"];
$Name = preg_replace('/^.+[\\\\\\/]/', '', $Naam);
$Foto = base64_decode($_POST["Foto"]);
$query = "INSERT INTO voorraad_foto (barbody, location, foto) VALUES ('$Barcode','$Name','{$Foto}')";
$results = mysqli_query($db,$query);
我的表格字段是BLOB。
但是当它执行它时,一切正常,除了它不会将其作为blob插入,而是纯字符串
我已尝试删除
preg_replace('#data:image/[^;]+;base64,#', '', $Foto)
但是没有任何区别,尝试添加标题时也没有,但没有。
我做错了什么,或者有什么明显的东西我没有得到?
THX。
答案 0 :(得分:0)
我以某种方式解决了它:
我编写了一个获取Base64字符串的函数,对其进行解码并将其写入Temp文件。 然后我再次读取该文件并将其上传到我的数据库。 成功时,删除文件。
它可能不是最有效的方式,但它有效!
function WriteToImageAndGetData($base64_string, $File) {
//Write to file
$ifp = fopen($File, "wb");
$data = explode(',', $base64_string); //Split Base64 string
fwrite($ifp, base64_decode($data[1])); //Decode Base64 string
fclose($ifp);
//Read from file
$fp = fopen($File, 'r');
$data = fread($fp, filesize($File)); //Read file contents
$data = addslashes($data);
fclose($fp);
return $data;
}