1732170055
Swift | NSDate().timeIntervalSince1970 |
---|---|
Go | import ( "time" ) int32(time.Now().Unix()) |
Java | (int) (System.currentTimeMillis() / 1000) |
JavaScript | Math.round(new Date() / 1000) |
Objective-C | [[NSDate date] timeIntervalSince1970] |
MySQL | SELECT unix_timestamp(now()) |
SQLite | SELECT strftime('%s', 'now') |
PHP | time() |
Python | import time time.time() |
Ruby | Time.now.to_i |
Shell | date +%s |
Groovy | (new Date().time / 1000).intValue() |
Lua | os.time() |
.NET/C# | (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 |