json_decode(json_encode(索引数组))给出NULL

时间:2011-12-02 08:44:11

标签: php mysql json

我使用json_encode对用户entred testarea内容进行编码 这是它在mysql中的存储方式(在“aaa”之后有一个返回行)

{"content":"aaa
bbb"}

现在当我从数据库中获取内容并尝试使用json_decode对其进行解码时,我得到的是NULL,而不是预期的。

什么错误? PHP中的错误?

编辑1:更多细节

$data =array('content'=>$textareaText);
$addres_insert = "INSERT INTO `rtable` (`data`) VALUES ('".json_encode($data)."');";
$rows = mysql_query($addres_insert);

然后获取内容

$query = "SELECT * FROM  `rtable` WHERE id =  '".$id."'";
        $rows = mysql_query($query);
    if ( $rows ){
        $row = mysql_fetch_array($rows);
        $res['data'] = json_decode($row['data']);//i tryed substr($row['data'],3) but didn't work
    }

1 个答案:

答案 0 :(得分:4)

JavaScript和JSON不允许将行返回包含在字符串中。你需要逃脱它们。

json_encode()应该自动为它们转义。

以下是我在PHP交互式shell上提供的JSON代码的输出:

php > $json = '{"content":"aaa
php ' bbb"}';
php > var_dump(json_decode($json, true));
NULL

正如你所看到的那样,当我逃避你的回归时,它的工作正常:

php > $json = '{"content":"aaa\n bbb"}';
php > var_dump(json_decode($json, true));
array(1) {
  ["content"]=>
  string(8) "aaa
 bbb"
}

在上一个与类似问题有关的问题中,我们也对此进行了进一步讨论:Problem when retrieving text in JSON format containing line breaks with jQuery