Unix tijdstempel, Unix tijdstempel conversie tool
Huidige tijdstempel
 Tijd Beijing

Unix tijdstempel → Beijing tijd

Unix tijdstempel
Beijing tijd

Beijing tijd → Unix tijdstempel

Tijd Beijing
Unix tijdstempel

Unix tijdstempel conversie tool introductie

Unix timestamp conversie tool, kunt u Unix timestamp converteren naar standaard formaat Beijing tijd, kan ook converteren standaard formaat Beijing tijd naar UNIX timestamp;

Wat is Unix timestamp (Unix timestamp): timestamp is het totale aantal seconden sinds 01 januari 1970 00:00:00 GMT (01 januari 1970 08:00:00 BST) tot nu.

PHP voorbeeldgebruik van Unixtime

Verkrijg de huidige tijdstempel:$time = time(); Converteer naar Beijing tijd:$datetime = date('Y-m-d H:i:s',$time); Converteer naar tijdstempel:$unixtime = strtotime($datetime);(www.pcjson.com)

1, verschillende programmeertalen of databases, krijg de huidige Unix-tijdstempel (Unix timestamp) methode:

PHP time()
Java time
JavaScript Math.round(new Date().getTime()/1000)
getTime () retourwaarde in milliseconden
.NET / C# time = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000
MySQL SELECT unix_timestamp(now())
Perl time
PostgreSQL SELECT extract(time FROM now())
Python Importeer eerst time dan time.time()
Ruby Unix-tijdstempel ophalen: Time.now of Time.new.
Unix tijdstempel weergeven: Time.now.to_i
SQL Server SELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())
Unix / Linux date +%s
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", Now())

2, verschillende programmeertalen of databases, de uitvoering van de gewone tijd → Unix tijdstempel (Unix timestamp):

PHP mktime(hour, minute, second, day, month, year)
Java long datetime = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").parse("01/01/1970 01:00:00");
JavaScript var commonTime = new Date(Date.UTC(year, month - 1, day, hour, minute, second))
MySQL SELECT unix_timestamp(time)
Tijdformaat: JJJJ-MM-DD HH:MM:SS of JJMMDD of JJJMMDD
Perl first use Time::Local then my $time = timelocal($sec, $min, $hour, $day, $month, $year);
PostgreSQL SELECT extract(datetime FROM date('YYYY-MM-DD HH:MM:SS'));
Python eerst time importeren dan int(time.mktime(time.strptime('JJJJ-MM-DD HH:MM:SS', '%J-%m-%d %H:%M:%S'))
Ruby Time.local(year, month, day, hour, minute, second)
SQL Server SELECT DATEDIFF(s, '1970-01-01 00:00:00', datetime)
Unix / Linux date +%s -d"Jan 1, 1970 00:00:01"
VBScript / ASP DateDiff("s", "01/01/1970 00:00:00", datetime)

3, verschillende programmeertalen of databases, Unix timestamp (Unix timestamp) naar gewone tijd (jaar - maand - dag uur: minuut: seconde):

PHP date('r', Unix timestamp)
Java String datetime = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(Unix timestamp * 1000))
JavaScript eerst var unixTimestamp = new Date(Unix timestamp * 1000) dan commonTime = unixTimestamp.toLocaleString()
Linux date -d @Unix timestamp
MySQL from_unixtime(Unix timestamp)
Perl first my $time = Unix timestamp then my ($sec, $min, $hour, $day, $month, $year) = (localtime($time))[0,1,2,3,4,5,6]
PostgreSQL SELECT TIMESTAMP WITH TIME ZONE 'time' + Unix timestamp) * INTERVAL '1 second';
Python eerst tijd importeren dan time.gmtime(Unix-tijdstempel)
Ruby Time.at(Unix timestamp)
SQL Server DATEADD(s, Unix timestamp, '1970-01-01 00:00:00')
VBScript / ASP DateAdd("s", Unix timestamp, "01/01/1970 00:00:00")
Toegangslogboeken: