我需要帮助将包含科学记数的数字的字符串转换为double。
示例字符串: “1.8281e-009” “2.3562e-007” “0.911348”
我正在考虑将数字分成左边的数字和指数而不只是做数学来生成数字;但有没有更好/标准的方法来做到这一点?
答案 0 :(得分:12)
PHP是无类型的动态类型,这意味着它必须解析值以确定它们的类型(PHP的最新版本有type declarations)。
在您的情况下,您可以简单地执行数值运算以强制PHP将值视为数字(并且它理解科学记数法x.yE-z
)。
尝试例子
foreach (array("1.8281e-009","2.3562e-007","0.911348") as $a)
{
echo "String $a: Number: " . ($a + 1) . "\n";
}
只需加1(你也可以减零)将使字符串成为数字,并带有正确的小数位数。
结果:
String 1.8281e-009: Number: 1.0000000018281
String 2.3562e-007: Number: 1.00000023562
String 0.911348: Number: 1.911348
您也可以使用(float)
$real = (float) "3.141592e-007";
答案 1 :(得分:9)
$f = (float) "1.8281e-009";
var_dump($f); // float(1.8281E-9)
答案 2 :(得分:3)
$float = sprintf('%f', $scientific_notation);
$integer = sprintf('%d', $scientific_notation);
if ($float == $integer)
{
// this is a whole number, so remove all decimals
$output = $integer;
}
else
{
// remove trailing zeroes from the decimal portion
$output = rtrim($float,'0');
$output = rtrim($output,'.');
}
答案 3 :(得分:3)
答案 4 :(得分:3)
我发现了一个使用number_format将值从浮点科学记数转换为非科学记数的帖子:
<击> http://jetlogs.org/2008/02/05/php-problems-with-big-integers-and-scientific-notation/ 击>
编者注:链接烂了
帖子的例子:
$big_integer = 1202400000;
$formatted_int = number_format($big_integer, 0, '.', '');
echo $formatted_int; //outputs 1202400000 as expected
HTH
答案 5 :(得分:0)
同时使用number_format()
和rtrim()
个功能。例如
//eg $sciNotation = 2.3649E-8
$number = number_format($sciNotation, 10); //Use $dec_point large enough
echo rtrim($number, '0'); //Remove trailing zeros
我创建了一个函数,具有更多函数(双关语)
function decimalNotation($num){
$parts = explode('E', $num);
if(count($parts) != 2){
return $num;
}
$exp = abs(end($parts)) + 3;
$decimal = number_format($num, $exp);
$decimal = rtrim($decimal, '0');
return rtrim($decimal, '.');
}
答案 6 :(得分:0)
function decimal_notation($float) {
$parts = explode('E', $float);
if(count($parts) === 2){
$exp = abs(end($parts)) + strlen($parts[0]);
$decimal = number_format($float, $exp);
return rtrim($decimal, '.0');
}
else{
return $float;
}
}
使用0.000077240388
答案 7 :(得分:0)
我尝试了+ 1,-1,/ 1解决方案,但如果不随后使用round($ a,4)或类似数字四舍五入,那还不够