码迷,mamicode.com
首页 > 系统相关 > 详细

powershell生成时间戳13和10位

时间:2019-11-10 09:57:44      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:rsh   shel   tick   pow   div   百度   它的   str   time   

定义:

  时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数。

  通俗的讲, 时间戳是一份能够表示一份数据在一个特定时间点已经存在的完整的可验证的数据。

   它的提出主要是为用户提供一份电子证据, 以证明用户的某些数据的产生时间。  ---摘自百度百科

  Ticks是一个周期,存储的是一百纳秒,换算为秒,一千万分之一秒。

实现:

(([DateTime]::Now.ToUniversalTime().Ticks - 621355968000000000)/10000000).tostring().Substring(0,10)
(([DateTime]::Now.ToUniversalTime().Ticks - 621355968000000000)/10000).tostring().Substring(0,13)

 

powershell生成时间戳13和10位

标签:rsh   shel   tick   pow   div   百度   它的   str   time   

原文地址:https://www.cnblogs.com/feiyucha/p/11828648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!