BLOB字段返回null JSON

时间:2015-10-08 02:47:25

标签: php json

我正在将图像直接保存在数据库中(是的,我已阅读过该文章,并且知道保存图像的路径更好)。 问题是选择图像字段,这是一个blob返回NULL到我的JSON。我已经阅读了很多相同查询的stackoverflow链接,但仍然没有明确的解释/回答已经能够帮助我。 我使用base_64进行了编码,但是当这样做时,网页上没有显示任何内容。

如果能指出正确的方向,我将不胜感激。

这是我的代码的一部分:

header("Content-Type:application/json");
//select query



$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
    $rows[] = $r;
}


    if (!empty($rows))
        {       
            $encode = array("StudentsList" => $rows);        
            //$json_response=json_encode($encode);
            $json_response=base64_encode($encode);
                    echo $json_response;
                    echo json_last_error(); //Returns 0
        }

1 个答案:

答案 0 :(得分:0)

如果您需要json数据 请使用json_encode

例如

echo json_encode($json_response);

并阅读php手册

http://php.net/manual/en/function.json-encode.php