How does php convert scientific calculations to strings and participate in calculations

青灯夜游
Release: 2023-04-09 19:48:01
forward
2989 people have browsed it

This article will introduce to you how PHP converts scientific calculations into strings and participates in calculations. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How does php convert scientific calculations to strings and participate in calculations

Recommended study: "PHP Video Tutorial"

First look at this code. When the PHP number exceeds a certain length, it will automatically Convert to the form of scientific notation

$open = 1.248E-5; // 0.00001248 $close = 1.228E-5; // 0.00001228 echo bcsub($close, $open, 10); // 0.00000000 echo $percent = bcdiv(bcsub($close, $open, 10), $open, 10); //Warning: bcdiv(): Division by zero
Copy after login

If you run it directly, an error will be reported. If it is a string, it can be used normally

$open = '0.00001248'; $close = '0.00001228'; echo bcsub($close, $open, 10); // -0.0000002000 echo $percent = bcdiv(bcsub($close, $open, 10), $open, 10); // -0.0160256410
Copy after login

So the key to the problem becomes, how to convert scientific calculations to strings

$open = 1.248E-5; // 方法一, php内置函数 $str = number_format($open, 10, '.', ''); // 保留10位小数, 小数分割符为点, 千位分隔符为空 var_dump($str); //0.00001248 // 方法二 function scToStr($num, $double = 8){ if(false !== stripos($num, "e")){ $a = explode("e",strtolower($num)); return bcmul($a[0], bcpow(10, $a[1], $double), $double); } } $str = scToStr($open, 8); var_dump($str); //0.00001248
Copy after login

For more programming related knowledge, please visit:Programming Video! !

The above is the detailed content of How does php convert scientific calculations to strings and participate in calculations. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:csdn.net
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!