Gossamer Forum
Home : General : Perl Programming :

How to get a ms level time?

Quote Reply
How to get a ms level time?
use time(), I can only get a time of second level, How can I get a ms level time?
Quote Reply
Re: [backdream] How to get a ms level time? In reply to
use Time::HiRes qw/time/;
print time;

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] How to get a ms level time? In reply to
Good , Thanks.