in reply to cgi process time
use Time::Local; my $StartTime = time(); print "Doing nothing but waisting time....\n"; for ($i = 0; $i < 10000000; $i++) { } $EndTime = time(); print "Waisted: ". ($EndTime - $StartTime) ."s\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi process time
by Anonymous Monk on Oct 31, 2005 at 20:07 UTC |