Skip to content

Instantly share code, notes, and snippets.

@utaani
Created July 23, 2008 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save utaani/1548 to your computer and use it in GitHub Desktop.
Save utaani/1548 to your computer and use it in GitHub Desktop.
make datetime string like "20080720192345"
##-- makedate: 日付文字列の作成
sub makedate {
my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=(localtime);
sprintf( "%04.4d%02.2d%02.2d%02.2d%02.2d%02.2d",
1900+$year,$mon+1,$mday,$hour,$min,$sec);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment