如何在php中打印一个非常小的浮点值?

发布于 2024-11-04 10:27:38 字数 405 浏览 2 评论 0原文

我有一个打印计算每个页面的加载时间的函数:

function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}
 $time_start = microtime_float();

$time_end = microtime_float();
$time = $time_end - $time_start;

但是当我回显 $time 时,我得到这样的结果:

5.60283660889E-5

但是我想要一个像 0.000000000000xxxx 这样的值,我该如何转换它?谢谢。

I have a function that print calculate the loading time of each page:

function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}
 $time_start = microtime_float();

$time_end = microtime_float();
$time = $time_end - $time_start;

but when I echo the $time, I get something like this:

5.60283660889E-5

But I would like to have a value like 0.000000000000xxxx, how can I convert this? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

信愁 2024-11-11 10:27:42
printf('%f', $time);

看一下 printf 函数

printf('%f', $time);

Take a look at printf function

很快妥协 2024-11-11 10:27:41

不需要“float”函数,只需

$time_start = microtime(TRUE);

将值返回为 float 即可。

要显示小数,请尝试

printf('%.16f', $time);

告诉 PHP 将输出格式化为具有 16 位小数的浮点数。

There's no need for your "float" function, just do

$time_start = microtime(TRUE);

which returns the value as float.

To display the decimals, try

printf('%.16f', $time);

which tells PHP to format a float with 16 decimal places of output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文