dooo61733 2016-05-26 09: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 09: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条)

报告相同问题?

悬赏问题

  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题
  • ¥15 虚拟机打包apk出现错误
  • ¥30 最小化遗憾贪心算法上界
  • ¥15 用visual studi code完成html页面
  • ¥15 聚类分析或者python进行数据分析
  • ¥15 三菱伺服电机按启动按钮有使能但不动作
  • ¥15 js,页面2返回页面1时定位进入的设备
  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。