本文实例讲述了php数值转换时间及时间转换数值用法。分享给大家供大家参考,具体如下:
本文实例讲述了php数值转换时间及时间转换数值用法。分享给大家供大家参考,具体如下:
echo $startime=strtotime(date("Y-m-d",time()));//当天0点时间戳
echo "<br/>";
echo $endttime=strtotime(date("Y-m-d",time()).' 23:59:59');//当天23:59:59的INT类型时间戳
echo "<br/>";
//把数值型转成时间字符型
$dotime="1357985479";
echo date("Y-m-d H:i:s",$dotime);//把数字型时间按格式转换成时间格
echo "<br/>";
//输出当前时间字符串型
echo strtotime(date('Y-m-d H:i:s',time()));
echo "<br/>";
//把数值型转成字符串型
echo date('Y-m-d H:i:s','1357985479');
echo "<br/>";
//把字符串型转成数值型
echo strtotime('Y-m-d H:i:s');
//echo "<br/>";
//最近七天
echo strtotime("-7 days")
运行结果如下:
1495065600
1495151999
2013-01-12 10:11:19
1495073470
2013-01-12 10:11:19
1494468670
PS:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器: http://tools.jb51.net/jisuanqi/date_jisuanqi
在线日期计算器/相差天数计算器: http://tools.jb51.net/jisuanqi/datecalc
在线日期天数差计算器: http://tools.jb51.net/jisuanqi/onlinedatejsq
Unix时间戳(timestamp)转换工具: http://tools.jb51.net/code/unixtime
php 数值 时间 转换