Perl获取日期

代码示例

3
0

perl获取日期

# For Perl only

# syntax
use POSIX;
use Time::Piece;
my $CurTime = localtime(); # <-- Format: Day Month  Date HH:MM:SS (ei: Thu May  7 08:45:52 2020)
my $FormattedTime = $local_time->strftime('<FormatOfDateTime>');

# example 
use POSIX;
use Time::Piece;
my $CurTime = localtime();
print "[CurTime:$CurTime]\n";

# Note: for formatting, search Perl DateTime Formatting
1
0

perl设置日期

# For Perl only

# syntax
use Time::Piece;
Time::Piece->strptime('<Date-time-input>', '<format-of-input>');

# examples (for: 25 May 1994 13:31:18)

# OPTION A
use Time::Piece;
my $date_1 = Time::Piece->strptime('1994-05-25 13:31:18', '%Y-%m-%d %X');
print $date_1 . "\n";

#OPTION B
use Time::Piece;
my $date_2 = Time::Piece->strptime('13:31:18 25/05/1994', '%X %d/%m/%Y');
print $date_2 . "<---\n";

# For more details on formatting symbols (%...), please scroll to the 
# bottom of "https://www.tutorialspoint.com/perl/perl_date_time.htm"

类似页面

带有示例的类似页面

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................

受欢迎的此类别

标籤的相关热门网页