Help for this page

Select Code to Download


  1. or download this
    sub sec_to_ddmmss {
        my $t = shift;
        return int($t / 86400), (gmtime($t))[2, 1, 0];
    }