我用perl,並通過這 - >追加爲Z
DateTime->now(time_zone => 'UTC')) to the method below
和
sub get_datetime{
my ($datetime) = @_;
my $formatter = new DateTime::Format::Strptime(pattern => "%Y-%m-%d %H:%M:%S",
time_zone => "UTC");
return $formatter->format_datetime($datetime);
}
,我想顯示像2012-10時間-10 10:00:01Z
我怎麼可以追加在結束了UTC時間在Z?我嘗試過 pattern =>「%Y-%m-%d%H:%M:%S%Z」但那不是編譯。
非常感謝。這工作 – sbolla