欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

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

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

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

使用方法:

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

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

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

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

 

 /// <summary>
     /// Unix时间戳转换为DateTime
     /// </summary>
     private DateTime ConvertToDateTime(string timestamp)
     {
       System.DateTime time = System.DateTime.MinValue;
       //精确到毫秒
       //时间戳转成时间
       DateTime start = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(, , ));
       try
       {
         time = timestamp.Length == ? start.AddSeconds(long.Parse(timestamp)) : start.AddMilliseconds(long.Parse(timestamp));
       }
       catch (Exception ex)
       {
         return start;//转换失败
       }
       return time;
     }
     /// <summary>
     /// DateTime转换为Unix时间戳
     /// </summary>
     /// <param name="time"></param>
     /// <returns></returns>
     private string ConvertTimestamp(DateTime time)
     {
       double intResult = ;
       System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(, , ));
       intResult = (time - startTime).TotalMilliseconds;
       return Math.Round(intResult,).ToString();
     }

上一篇:C#简单实现子窗体向父窗体传值的方法

栏    目:C#教程

下一篇:C#实现将应用程序设置为开机启动的方法

本文标题:时间戳与时间相互转换(php .net精确到毫秒)

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6968.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有