php时间戳转换代码详解
在php中我们要把时间戳转换日期可以直接使用date函数来实现,如果要把日期转换成时间戳可以使用strtotime()函数实现,下面我来给大家举例说明。
1.php中时间转换函数
strtotime (date()) date("Y-m-dH:i",$unixtime)
2.php中获得今天零点的时间戳要获得零点的unix时间戳,可以使用
$todaytime=strtotime(“today”)
然后再使用
date("Y-m-dH:i",$todaytime)
转换为日期。
时间戳转换为日期
时间戳转换函数:
date("Y-m-dH:i:s",time()),"Y-m-dH:i:s"是转换后的日期格式,time()是获得当前时间的时间戳。如果是date("Y-m-dH:i:s",time()),则小时分秒一起显示;如果是
date("Y-m-d",time()),只显示年月日。例如:
date("Y-m-dH:i:s",time())
转换后为:
2010-07-1818:42:48
date("Y-m-d",time())
转换后为:
2010-07-18日期转换为时间戳.
classSaonekControllerextendsController{ publicfunctionindex Action (){ /*
时间戳转换成日期不用说了
但是日期要转成时间戳的话就要用到
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”,time())
结果:
2009-01-2209:40:25
指定时间:
echodate(”Y-m-dH:i:s”,strtotime(”+1day”))
结果:
2009-01-2309:40:25
(2)打印昨天此时的
PHP时间戳strtotime(”-1day“) 当前时间:echodate(”Y-m-dH:i:s”,time()) 结果:2009-01-2209:40:25 指定时间:echodate(”Y-m-dH:i:s”,strtotime(”-1day”)) 结果:2009-01-2109:40:25
(3)打印下个星期此时的时间戳
strtotime(”+1week“) 当前时间:echodate(”Y-m-dH:i:s”,time()) 结果:2009-01-2209:40:25 指定时间:echodate(”Y-m-dH:i:s”,strtotime(”+1week”)) 结果:2009-01-2909:40:25
(4)打印上个星期此时的时间戳
strtotime(”-1week“) 当前时间:echodate(”Y-m-dH:i:s”,time()) 结果:2009-01-2209:40:25 指定时间:echodate(”Y-m-dH:i:s”,strtotime(”-1week”)) 结果:2009-01-1509:40:25
(5)打印指定下星期几的PHP时间戳
strtotime(”nextThursday“) 当前时间:echodate(”Y-m-dH:i:s”,time()) 结果:2009-01-2209:40:25 指定时间:echodate(”Y-m-dH:i:s”,strtotime(”nextThursday”)) 结果:2009-01-2900:00:00
(6)打印指定上星期几的时间戳
strtotime(”lastThursday“) 当前时间:echodate(”Y-m-dH:i:s”,time()) 结果:2009-01-2209:40:25 指定时间:echodate(”Y-m-dH:i:s”,strtotime(”lastThursday”)) 结果:2009-01-1500:00:00
以上就是php时间戳转换的详细内容,更多请关注php中文网其它相关文章!