PHP 大整数 / 科学计数法 转 字符串

栏目: PHP · 发布时间: 5年前

内容简介:json 数据格式 中 大整数解开 会被转换为科学计数法 使用PHP 科学计数法转字符串

json 数据格式 中 大整数解开 会被转换为科学计数法 使用 JSON_BIGINT_AS_STRING

json_decode 官方文档

json_decode($var, true, '512', JSON_BIGINT_AS_STRING)

PHP 科学计数法转字符串

<?PHP
 function ScToNum($num) {
    $numer = strtoupper($num);
    $parts = explode('E', $numer);
    list($int, $ex_str) = $parts;

    $exp = $ex_str[0];
    $var = substr($ex_str, 1);

    if ($exp == '+') {
        return bcmul($int, bcpow(10, $var));
    }

    return bcdiv($int, bcpow(10, $var));
}

最后更新于 2019-01-07 08:35:26 并被添加「」标签,已有 1 位童鞋阅读过。


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

iGen

iGen

Jean M. Twenge PhD / Atria Books / 2017-8-22 / USD 27.00

A highly readable and entertaining first look at how today’s members of iGen—the children, teens, and young adults born in the mid-1990s and later—are vastly different from their Millennial predecesso......一起来看看 《iGen》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具