유닉스 시간은 유닉스 Epoch(1970-01-01 00:00:00 +0000 (UTC))로 부터 지난 초 단위 시간을 말합니다.
C
time_t now = time(NULL);
C++
time_t now = time(nullptr);
CoffeeScript
now = Date.now() / 1000

now = new Date().getTime() / 1000
Java
long now = System.currentTimeMillis() / 1000;

long now = new Date().getTime() / 1000;
JavaScript
now = Date.now() / 1000;

now = new Date().getTime() / 1000;
Kotlin
val now = System.currentTimeMillis() / 1000

val now = Date().getTime()/1000
Lua
now = os.time()
Objective-C
NSTimeInterval now = [[NSDate datetimeIntervalSince1970];
Perl
$now = time;
PHP
$now = time();
Python
time.time()
Ruby
now = Time.now.to_i
Swift
let now = Date().timeIntervalSince1970


comments powered by Disqus