in reply to localtime hour count

<i have tried something very rudimentary hope u can refine and work on it let me know if you have something better

#!/usr/lib/perl -w use strict; use warnings; my $t1 = time(); print "$t1 \n"; sleep 5; my $t2 = time(); ; print ($t2) ; my $diff = $t2 - $t1; my $mDiff = int($diff / 60); my $sDiff = sprintf("%02d", $diff - 60 * $mDiff); print "diff = $diff -> $mDiff\:$sDiff\n";

Replies are listed 'Best First'.
Re^2: localtime hour count
by ady (Deacon) on Apr 08, 2006 at 14:43 UTC
    Thanks rjsaulakh
    See my update above for another fix of the issue.
    Best regards,
    allan