微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Oracle下时间转换在几种语言中的实现

cshellperlPHP下的日期时间转换:秒数与人类可读日期scalarlocaltime与secondssince00:00:001970-01-01UTC' <BR>scalarlocaltime26-bytestring与secondssince00:00:001970-01-01UTC'
(1970年1月1日凌晨零点以来的秒数)
thenumberofsecondsthathavepassedsincetheEpoch:00:00:00January1,1970,CoordinatedUniversalTime(UTC). c:
《AdvancedProgrammingintheUNIXEnvironment:SecondEdition》
简称《APUE》Seciont6.10figure6.8.RelationshipofthevarIoUstimefunctions说的清楚
#include<time.h>
time_ttime(time_tcalptr);
structtm
localtime(consttime_tcalptr);
structtm
gmtime(consttime_tcalptr);
time_tmktime(structtm
tmptr);
charasctime(conststructtmtmptr);
charctime(consttime_tcalptr);
size_tstrftime(charrestrictbuf,size_tmaxsize,
constchar
restrictformat,
conststructtm*restricttmptr); shell:
%date+%s
1128621784 %date-d"1970-01-01UTC1128621784seconds"
FriOct702:03:04CST2005 date-d"1970-01-01UTC1128621784seconds"+"%Y-%m-%d%H:%M:%s"
2005-10-0702:03:04 perl:
%perl-e'printscalarlocaltime1128621784'
FriOct702:03:042005 PHP:
date('Y-m-dH:i:s',time());

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐