方法有很多
第一种:
$today_zero=strtotime('today');//说明:strtotime支持英语
第二种:
$today_zero=strtotime(date('Y-m-d',time()));//说明:先获取现在的时间所在的日期格式2013-09-01,然后把它转换为时间戳
其中,第二种还可以简单点写:$today_zero=strtotime(date('Y-m-d'));
也就是说,不填当前时间,也是可以的
<php
/
Copyright (c) 2011 Baiducom, Inc All Rights Reserved
$Id$
/
//时间戳转日期
$date_time_array = getdate(1297845628); //1311177600 1316865566
$hours = $date_time_array["hours"];
$minutes = $date_time_array["minutes"];
$seconds = $date_time_array["seconds"];
$month = $date_time_array["mon"];
$day = $date_time_array["mday"];
$year = $date_time_array["year"];
echo "year:$year\nmonth:$month\nday:$day\nhour:$hours\nminutes:$minutes\nseconds:$seconds\n";
//正常日期转时间戳
echo mktime(0, 0, 0, 9, 18, 2011) "\n";
echo mktime(0, 0, 0, 9, 25, 2011) "\n";
/
time();
是获得当前时间,但获得的是一整型
/
//可以对此进行格式化
echo "time()显示年月日时分秒:" date("Y-m-d H:i:s", time()) "\n";
//这样连时,分秒一起显示
echo "time()只显示年月日:" date("Y-m-d ", time()) "\n"; //只年示年月日
echo "时间戳格式化:" date("Y-m-d H:i:s", 1297845628) "\n"; //直接使用时间戳
/ vim: set ts=4 sw=4 sts=4 tw=100 noet: /
>
希望可以帮到你
function getMillisecond() {
list($t1, $t2) = explode(' ', microtime());
return $t2 '' ceil( ($t1 1000) );
}
echo getMillisecond();
前面十位是标准的时间戳, 后面三位是毫秒
PHP获取开始和结束时间
//当前时间
$start
=
strtotime(date('Y-m-d
H:i:s'));
//时长,时间长度(秒为单位,例子中为120秒,2分钟后,实际时间可自行修改或程序计算得出)
//如果是1周后,则为$start
+
(7
24
60
60);
$long
=
$start
+
120
//结束时间
$end
=
date('Y-m-d
H:i:s',
$long);
php可以用函数time()来获取Unix
时间戳,但是只能获取当前的,不能填入参数计算
获取当天零点的时间戳, 可以按以下方法获得:
<php//获取当天的年份
$y = date("Y");
//获取当天的月份
$m = date("m");
//获取当天的号数
$d = date("d");
//将今天开始的年月日时分秒,转换成unix时间戳(开始示例:2015-10-12 00:00:00)
$todayTime= mktime(0,0,0,$m,$d,$y);
//$todayTime即是当天零点的时间戳
>
$today = date('Y-m-d',$time) //这个是根据时间获取当前时间戳的年月日,在把$today转化成时间戳,strtotime($today),就能获得当天0点的时间戳了,想要获取24点的时间戳,那就是明天0点的时间戳,$tomorrow = date('Y-m-d',strtotime( "+1 day",$time)), 24点的时间戳是这个 strtotime($tomorrow)。
以上就是关于新手php时间戳的问题如何获取每天凌晨的时间戳全部的内容,包括:新手php时间戳的问题如何获取每天凌晨的时间戳、PHP时间戳与时间问题、php如何取得十三位unix时间戳等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)