在 Perl 中获取 Epoch 毫秒的最佳方法是什么?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Time::HiRes 模块可以直接替代时间,
您可以在 Perl 常见问题解答中了解更多信息
The Time::HiRes module has a drop-in replacement for time
You can read more in the perl FAQ
一个现实世界的例子是:
A real world example would be:
对于为 SunOS 构建的 Perl:v5.8.4 (sun4-solaris-64int),oylenshpeegul的答案需要修改。
For Perl: v5.8.4 built for SunOS (sun4-solaris-64int), oylenshpeegul's answer needs to be modified.