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条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度