×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

Perl example - How to get a Perl script start time?


Perl - How to get a Perl script start time?

For this purpose you may use the special Perl global variable $^T 
which return the script's start time.
 
You may try the following:
 
print $^T;

Category: Perl

 
<< Go back