在php中我们要把时间戳转换日期可以直接使用date函数来实现,如果要把日期转换成时间戳可以使用strtotime()函数实现,下面我来给大家举例说明。
1. php中时间转换函数
strtotime(date(“Y-m-dH:i”))date(“Y-m-dH:i”,$unixtime)
2. php中获得今天零点的时间戳要获得零点的unix时间戳,可以使用
$todaytime=strtotime(“today”)
然后再使用
date(“Y-m-dH:i”,$todaytime)
转换为日期。
时间戳转换为日期
时间戳转换函数:
date(“Y-m-d H:i:s”,time()),”Y-m-d H:i:s”是转换后的日期格式,time()是获得当前时间的时间戳。如果是date(“Y-m-d H:i:s”,time()),则小时分秒一起显示;如果是
date(“Y-m-d “, time()),只显示年月日。例如:
date(“Y-m-dH:i:s”,time())
date(“Y-m-d”,time())
日期转换为时间戳
classSaonekControllerextendsController{publicfunctionindexAction(){/*时间戳转换成日期不用说了但是日期要转成时间戳的话就要用到strtotime()*/$time=time();//时间戳$nowtime=date(‘Y-m-dH:i:s’,$time);//生成带格式的日期$oldtime=’2010-11-1022:19:21′;$catime=strtotime($oldtime);//日期转换为时间戳$nowtimes=date(‘Y-m-dH:i:s’,$catime);//时间戳又转回日期了echo$nowtimes;}}?>
3. php中时间戳转换为日期,并按照时间显示不同的内容,如刚刚,分钟前,小时前,今天,昨天等
/*时间转换函数*/functiontransTime($ustime){$ytime=date(“Y-m-dH:i”,$ustime);$rtime=date(“n月j日H:i”,$ustime);$htime=date(“H:i”,$ustime);$time=time()-$ustime;$todaytime=strtotime(“today”);$time1=time()-$todaytime;if($time<60){$str=’刚刚’;}elseif($time<60*60){$min=floor($time/60);$str=$min.’分钟前’;}elseif($time<$time1){$str=’今天’.$htime;}else{$str=$rtime;}return$str;}
其它的参考
使用date将当时间戳与指定时间戳转换成系统时间
(1)打印明天此时的时间戳
strtotime(” 1day”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(” 1day”))
(2)打印昨天此时的PHP时间戳
strtotime(“-1day”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(“-1day”))
(3)打印下个星期此时的时间戳
strtotime(” 1week”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(” 1week”))
(4)打印上个星期此时的时间戳
strtotime(“-1week”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(“-1week”))
(5)打印指定下星期几的PHP时间戳
strtotime(“nextThursday”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(“nextThursday”))
(6)打印指定上星期几的时间戳
strtotime(“lastThursday”)
指定时间:
echodate(“Y-m-dH:i:s”,strtotime(“lastThursday”))
注意:使用到时间戳与date日期设置的时候不要忘记时区的设置:
date_default_timezone_set(‘PRC’);//设置中国时区
以上内容希望帮助到大家,有需要可以添加下方二维码进群交流学习新技术。