dth96108 2018-10-10 08:11
浏览 158
已采纳

当我使用json_encode时为什么PHP会绕过我的号码?

I need execute json_encode() and convert my original number from:

50610101800060384093800100001010000000056199999999

to

"50610101800060384093800100001010000000056199999999" 

But it return

5.061010180006E+49

I tried this:

ini_set('precision', 30); //With 1, 30, 50, 100, 1000
ini_set('serialize_precision', -1);
'content' => json_encode($params, JSON_NUMERIC_CHECK)

but doesn't work. Can you help me?

  • 写回答

2条回答 默认 最新

  • duanmengmiezen8855 2018-10-10 10:15
    关注

    50610101800060384093800100001010000000056199999999 exceeds the value of the maximum integer in PHP and so it is promoted to a float and expressed in scientific notation. The float result may be problematic for various reasons as the Manual explains in warning about floating point precision.

    If you wish to express the value as if it were an integer you must encapsulate it in a string. That string you may add zero to it but when you do so the result in scientific notation will refer to a float, as follows:

    <?php
    
    $s = "50610101800060384093800100001010000000056199999999";
    
    echo $s,"
    ";
    
    $x = $s + 0;
    
    echo $x, "
    ",is_float($x); 
    

    See here.

    For more info in re PHP and floats, see here.

    On the other hand, if there were an array of numbers whose digits corresponded to the numerical display in the OP's post, you could write code as follows:

    <?php
        $a = [5,0,6,1,0,1,0,1,8,0,0,0,6,0,3,8,4,0,9,3,8,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,5,6,1,9,9,9,9,9,9,9,9];
        foreach($a as $e) {
           $e = (string) $e;
        }
        $foo = join($a);
        var_dump($foo);
        $foo = bcadd($foo, 1);
        var_dump($foo);
    

    See live code.

    The reason this example works is because each array value is converted to a numerical string and then the individual elements are joined to form one very long numerical string. BC Math is an extension in PHP which supports arbitrary precision. In this case, the bcadd() function adds one to the numerical string which results in the display of an incremented numerical string value.

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

报告相同问题?

悬赏问题

  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化