您的位置:

php当天凌晨时间戳,php时间戳函数

本文目录一览:

新手php时间戳的问题如何获取每天凌晨的时间戳?

方法有很多

第一种:

$today_zero=strtotime('today');//说明:strtotime支持英语

第二种:

$today_zero=strtotime(date('Y-m-d',time()));//说明:先获取现在的时间所在的日期格式2013-09-01,然后把它转换为时间戳

其中,第二种还可以简单点写:$today_zero=strtotime(date('Y-m-d'));

也就是说,不填当前时间,也是可以的

php 根据一个时间戳,怎么判断今天0时和24时的时间戳?

$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

//获取当天的年份

$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即是当天零点的时间戳

?