dooo61733 2016-05-26 01:30
浏览 161
已采纳

JSON_ERROR_RECURSION对json_encode的意义是什么?

I get this error on PHP7 every about 100 requests for some odd reason and I cannot get rid of it until I restart the fpm demon, however, the real problem is I cannot explain what the error is to start diagnosing this.

I took a look at the documentation http://php.net/manual/en/function.json-last-error.php which was not very useful and there does not seem to be any real links hanging about.

I know this error is not actually related to recursion depth (JSON_ERROR_DEPTH) so what does this error actually mean?

This is the var_dump() of the array that is failing:

 array (
'ns' => 'user',
'where' => '{"_id":"MongoDB\\\\BSON\\\\ObjectID(5505a4f647ac1824618b4567)","status":10}',
'projection' =>
array (
),
'sort' =>
array (
),
'limit' => NULL,
'skip' => NULL,
)
  • 写回答

2条回答 默认 最新

  • duannao3402 2016-05-26 01:39
    关注

    JSON_ERROR_RECURSION indicates that the data passed to json_encode() contains one or more recursive references.

    $data = array();
    $data['foo'] = &$data; // <-- recursive reference here
    
    var_dump(json_encode($data)); // bool(false)
    var_dump(json_last_error_msg()); // string(18) "Recursion detected"
    var_dump(json_last_error() === JSON_ERROR_RECURSION); // bool(true)
    

    Code like this will work though:

    $data['foo'] = 'hello';
    $data['bar'] = &$data['foo'];
    

    But not like this (another recursive reference):

    $data['foo'] = [1, 2, 3];
    $data['foo'][] = &$data['foo'];
    

    Recursive reference means that the reference points to a variable that in turn contains the same reference again.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部