Help for this page

Select Code to Download


  1. or download this
      $string = join ":", map { sprintf "%02d", $_ } (gmtime($seconds))[7,
    +2,1,0];
    
  2. or download this
      $string = sprintf "%02d:%02d:%02d:%02d", (gmtime($seconds))[7,2,1,0]
    +;
    
  3. or download this
      $string =~ s/\G00://g;