php 数字过长的科学计数法复原方法
当 php 中的数字长度超出其精度时,它会被自动转换为科学计数法,例如 “1.4271549730846e 15″。以下是一种复原方法:
数据库字段情况
立即学习“PHP免费学习笔记(深入)”;
$number = 1.4271549730846e+15; $restorednumber = (int) $number;
计算得出的数字情况
如果是计算得出的数字,可以通过格式化为字符串或使用 bcmath 扩展对其进行操作,具体取决于所需的精度:
$number = 1.4271549730846E+15; // 格式化为字符串 $restoredNumber = number_format($number, 0, '.', ''); // 使用 bcmath 扩展 $restoredNumber = bcadd($number, 0, 0);