Home  >  Article  >  php教程  >  PHP把科学计数法转换为原始数字字符串

PHP把科学计数法转换为原始数字字符串

WBOY
WBOYOriginal
2016-05-26 08:21:081285browse

文章提供的这个PHP 把科学计数法转换为原始数字字符串函数非常的好用,希望能帮助到各位朋友吧,代码如下:

function NumToStr($num){ 
    if (stripos($num,'e')===false) return $num; 
    $num = trim(preg_replace('/[=\'"]/','',$num,1),'"');//出现科学计数法,还原成字符串 
    $result = ""; 
    while ($num > 0){ 
        $v = $num - floor($num / 10)*10; 
        $num = floor($num / 10); 
        $result   =   $v . $result; 
    }//开源代码phprm.com 
    return $result; 
}

                           


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn