我在幾天前發帖 Pass MySQL medium blob into IOS NSData\UIImage 但是沒有設法找到解決方案。我的具體問題是,當我從數據庫中檢索,BLOB或TEXT圖像,它返回NULL,沒有在他們的變量只是返回空白來自MySQL的blob text圖像返回NULL
while ($row = mysql_fetch_array($result)) {
$add = array();
$add["Id"] = $row["Id"];
$add["Mail"] = $row["Mail"];
$add["Category"] = $row["Category"];
$add["Phone"] = $row["Phone"];
$add["Msgs"] = $row["Msgs"];
//image from blob
$add["Picture"] = $row["Picture"];
// push single add into final response array
array_push($response["adds"], $add);
}
是有任何其他方式來解決從BLOB \圖像行文本?!我試過https://stackoverflow.com/a/6273415/1333294,但沒有爲我工作。
您確定Picture字段已設置在您的數據庫中嗎? 你可以提供我用於表格的模式和數據嗎? –
圖片中文utf8_general_ci。所有其他字段返回它們的值很好 – ItayAmza
我認爲你的字段在數據庫中是空的。你能檢查它嗎? 執行select語句: '選擇從圖片YOUR_TABLE_NAME' 然後發佈結果 –