MySql Insert返回null

时间:2017-04-21 16:21:52

标签: php mysql json

我有以下功能:

public function insertMomentToDB($uid, $type, $data)
{

    $stmt = $this->conn->prepare("INSERT INTO moments_newsfeed(user_id, type, time, data) VALUES(?, ?, NOW(), ?)");
    $stmt->bind_param("sss", $uid, $type , $data);
    $result = $stmt->execute();
    $stmt->close();


    // check for successful store
    if ($result) 
    {
        return true;
    } 
    else 
    {
        return false;
    }
}

其中$ data = json未解码,我想把它放在表格里面的json格式

$ result始终为null,因此返回false ..

0 个答案:

没有答案