首页 > 编程 > C# > 正文

时间戳与时间相互转换(php .net精确到毫秒)

2019-10-29 21:38:14
字体:
来源:转载
供稿:网友

本文给大家分享的时间戳与时间相互转换(php .net精确到毫秒) ,感兴趣的朋友一起学习吧

 

 
  1. /** 获取当前时间戳,精确到毫秒 */ 
  2. function microtime_float() 
  3. list($usec, $sec) = explode(" ", microtime()); 
  4. return ((float)$usec + (float)$sec); 
  5. /** 格式化时间戳,精确到毫秒,x代表毫秒 */ 
  6. function microtime_format($tag, $time) 
  7. list($usec, $sec) = explode(".", $time); 
  8. $date = date($tag,$usec); 
  9. return str_replace('x', $sec, $date); 

使用方法:

1. 获取当前时间戳(精确到毫秒):microtime_float()

2. 时间戳转换时间:microtime_format('Y年m月d日 H时i分s秒 x毫秒', 1270626578

.net 时间戳互相转换(精确到毫秒)

这里记录一个时间戳的互相转换方法,网上都找了,基本都没有精确到毫秒,我的这个基本可以满足精确到毫秒的级别,代码如下:

 

 
  1. /// <summary> 
  2. /// Unix时间戳转换为DateTime 
  3. /// </summary> 
  4. private DateTime ConvertToDateTime(string timestamp) 
  5. System.DateTime time = System.DateTime.MinValue; 
  6. //精确到毫秒 
  7. //时间戳转成时间 
  8. DateTime start = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(, , )); 
  9. try 
  10. time = timestamp.Length == ? start.AddSeconds(long.Parse(timestamp)) : start.AddMilliseconds(long.Parse(timestamp)); 
  11. catch (Exception ex) 
  12. return start;//转换失败 
  13. return time; 
  14. /// <summary> 
  15. /// DateTime转换为Unix时间戳 
  16. /// </summary> 
  17. /// <param name="time"></param> 
  18. /// <returns></returns> 
  19. private string ConvertTimestamp(DateTime time) 
  20. double intResult = ; 
  21. System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(, , )); 
  22. intResult = (time - startTime).TotalMilliseconds; 
  23. return Math.Round(intResult,).ToString(); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表