时间戳
程序员文章站
2022-07-03 14:49:45
...
- 获取当前时间的时间戳
//获取当前时间
let now = Date.now()
//获取时间戳
let timeInterval:TimeInterval = now.timeIntervalSince1970
let timeStamp = Int(timeInterval)
- 获取指定时间的时间戳
//指定时间
let location = NSLocale(localeIdentifier: "zh-CN")
let timeString = "20170908211500"
let dformatter = DateFormatter()
dformatter.locale = location as Locale!
dformatter.dateFormat = "yyyyMMddHHmmss"
//转为date
let date:Date = dformatter.date(from: timeString)!
//转换为时间戳
let timeInterval:TimeInterval = date.timeIntervalSince1970
let timeStamp = Int(timeInterval)
推荐阅读
-
Java与MySQL时间戳传递/存储/协调问题--userLegacyDatetimeCode--userTimezone--serverTimezone
-
php根据日期或时间戳获取干支纪年,生肖和星座信息的方法
-
MySQL时间戳与日期格式的相互转换
-
使用php 获取时间今天明天昨天时间戳的详解_PHP教程
-
求一个时间戳
-
PHPExcel 当输出时间戳那样的数目字时,变成这样了!
-
php怎么获取当前时间戳后几天的日期
-
javascript中日期转换成时间戳的小例子_javascript技巧
-
python 获取当天凌晨零点的时间戳方法
-
PHP常用功能块_异常与时间戳 — php(33),php时间戳转换