码迷,mamicode.com
首页 > Web开发 > 详细

php 时间日期

时间:2015-05-15 22:44:35      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

  1. echo date(‘Y-m-d H:i:s‘);
技术分享
date_default_timezone_set(‘PRC‘); 设定时区
echo date_default_timezone_get();获取服务器设定的时区信息
创建函数返回时间戳mktime(1,2,22,1,5,2015)
  1. echo mktime(1,2,22,1,5,2015).‘<br>‘;
  2. echo date(‘Y-m-d H:i:s‘,1420390942);
技术分享
time()获取当前系统的时间戳,
  1. echo time();
  2. echo date(‘Y-m-d H:i:s‘,1431697515);
技术分享
strtotime(‘1983-1-1‘) 将日期字符串转换为 数字的时间戳
  1. $time=strtotime(‘1983-1-1‘);
  2. echo $time.‘<br>‘;
  3. echo date(‘Y年m月d日‘,410198400);
技术分享
trtotime(‘+2 day‘) 返回2天后的时间戳
  1. echo strtotime(‘+2 day‘).‘<br>‘;
  2. echo date(‘Y-m-d H:i:s‘,1431871146);
技术分享
统计留言时间
  1. $time="2015-5-15 22:17:1";
  2. $t=strtotime($time);//输出$time的时间戳
  3. $now=time(); //输出现在时间的时间戳
  4. $rr=floor(($now-$t)/86400);//floor 表示取整数 $rr 表示现在距离留言时间的时间差为多少
  5. $hh=floor(($now-$t)/3600);
  6. $mm=floor(($now-$t)/60);
  7. $ss=floor($now-$t);
  8. if($rr>=30){
  9. echo "留言时间为:$time";
  10. }else if($rr>=1){
  11. echo $rr.‘天前‘;
  12. }else if($hh>=1){
  13. echo $hh.‘小时前‘;
  14. }else if($mm>=1){
  15. echo $mm.‘分钟前‘;
  16. }else{
  17. echo $ss.‘秒前‘;
  18. }
技术分享
统计7天以内的会员注册信息
select count(*) from member where regtime between strtotime(‘-7 day‘)and time();







php 时间日期

标签:

原文地址:http://www.cnblogs.com/lsr111/p/4506952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!