在 Perl 中获取 Epoch 毫秒的最佳方法是什么?

发布于 2024-10-19 14:25:03 字数 145 浏览 4 评论 0原文

在 Perl 中很容易获得纪元秒(时间戳):

time

但是毫秒又是什么呢?最有效的方法似乎是 time*1000,但这并不像我想要的那么准确。除了 @perldoc 记录的长期术语之外,还有什么好的提示吗?

It's easy to get Epoch-Seconds (timestamp) in perl:

time

But what's with milliseconds? The most effective way seems to be time*1000, but that's not as accurate as I want it to be. Any good hints except for the long terms documented @perldoc?

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

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

发布评论

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

评论(3

请止步禁区 2024-10-26 14:25:03

Time::HiRes 模块可以直接替代时间,

$ perl -E 'say time'
1298827929
$ perl -MTime::HiRes=time -E 'say time'
1298827932.67446

您可以在 Perl 常见问题解答中了解更多信息

perldoc -q "How can I measure time under a second"

The Time::HiRes module has a drop-in replacement for time

$ perl -E 'say time'
1298827929
$ perl -MTime::HiRes=time -E 'say time'
1298827932.67446

You can read more in the perl FAQ

perldoc -q "How can I measure time under a second"
夏至、离别 2024-10-26 14:25:03

一个现实世界的例子是:

use Time::HiRes qw(gettimeofday);
print gettimeofday;

A real world example would be:

use Time::HiRes qw(gettimeofday);
print gettimeofday;
请止步禁区 2024-10-26 14:25:03
perl -MTime::HiRes=time -e 'print time;'

对于为 SunOS 构建的 Perl:v5.8.4 (sun4-solaris-64int),oylenshpeegul的答案需要修改。

perl -MTime::HiRes=time -e 'print time;'

For Perl: v5.8.4 built for SunOS (sun4-solaris-64int), oylenshpeegul's answer needs to be modified.

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