标签:
linux时间戳获得: | [root@mail161-Centos ~]#date +%s |
Java 时间戳获得: | Date date = new Date(); long time = date.getTime(); //System.currentTimeMillis() 也可以获得时间戳 //mysq 时间戳是秒只有10位,后三位是毫秒,要做处理 String dateline = time + ""; dateline = dateline.substring(0, 10); |
JavaScript 时间戳获得: | var timestamp = Date.parse(new Date()); //var timestamp = (new Date()).valueOf(); 也可以这样得到时间戳 //var timestame =new Date().getTime(); 这样也可以得到时间戳 //因为上面取得的是毫秒数,所以要除以1000 var time=Math.round(new Date().getTime()/1000); |
C# 时间戳获得: | (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 方法二: public int ConvertDateTimeInt(System.DateTime time) { System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1)); return (int)(time - startTime).TotalSeconds; } DateTime dt = DateTime.Now; this.textBox1.Text = ConvertDateTimeInt(dt).ToString(); |
MYSQL 时间戳获得: | SELECT unix_timestamp(now()) |
Perl 时间戳获得: | time() |
PHP 时间戳获得: | time() , mktime() |
PostgreSQL 时间戳获得: | SELECT extract(epoch FROM now()) |
Python 时间戳获得: | 先 import time 然后 time.time() |
Ruby 时间戳获得: | 获取Unix时间戳:Time.now 或 Time.new 显示Unix时间戳:Time.now.to_i |
SQL Server 时间戳获得: | SELECT DATEDIFF(s, ‘1970-01-01 00:00:00‘, GETUTCDATE()) |
VBScript时间戳获得: | DateDiff("s", "01/01/1970 00:00:00", Now()) |
标签:
原文地址:http://www.cnblogs.com/wenlixmh/p/4544085.html