首页 > 作文

PHP时间类完整代码实例

更新时间:2023-04-09 01:54:12 阅读: 评论:0

开发中,经常用到时间的一些例子,比如昨天,今天,前天,近七天,一周等等。这里整理了一个时间的完整类实例,直接实例化,有需要的可以看看

以下直接代码

<?phpheader("content-type:text/html;chart=utf-8");class time{ private $year;//年 private $month;//月 private $day;//天 private $hour;//小时 private $minute;//分钟 private $cond;//秒 private $microtime;//毫秒 private $weekday;//星期 private $longdate;//完整的时间格式 private $difftime;//两个时间的差值 //返回年份 time:时间格式为时间 2018-8-21 function getyear($time="",$type=""){ if($time==""){ $time=time(); } if($type==1){ return $this->year=date("y",$time); //返回两位的年份 18 }el{ return $this->year=date("y",$time); //返回四位的年份 2018 } } //返回当前时间的月份 time:时间格式为时间 2018-8-21 function getmonth($time="",$type=""){ if($time==""){ $time=time(); } switch($type){ ca 1:$this->month=date("n",$time);//返回格式 8  break; ca 2:$this->month=date("m",$time);//返回格式 08  break; ca 3:$this->month=date("m",$time);//返回格式 aug  break; ca 4:$this->month=date("f",$time);//返回格式 august  break; default:$this->month=date("n",$time); } return $this->month;  } //返回当前时间的天数 time:时间格式为时间 2018-8-21  function getday($time="",$type=""){ if($time==""){ $time=time(); } if($type==1){ $this->day=date("d",$time);//返回格式 21 }el{ $this->day=date("j",$time);//返回格式 21 } return $this->day; } //返回当前时间的小时 2018-08-21 1:19:21 20:19:21  function gethour($time="",$type=""){ if($time==""){ $time=time(); }  switch($type){ ca 1:$this->hour=date("h",$time);//格式: 1 20  节日祝福break; ca 2:$this->hour=date("h",$time);//格式 01 08  break; ca 3:$this->hour=date("g",$不同世界time);//格式 1 20  break; ca 4:$this->hour=date("g",$time);//格式 1 8  break;  default :$this->hour=date("h",$time); } return $this->hour; } //返回当前时间的分钟数 1:9:18  function getminute($time="",$type=""){ if($time==""){ $time=time(); } $this->minute=date("i",$time); //格式 09 return $this->minute; } //返回当前时间的秒数 20:19:01 function getcond($time="",$type=""){ if($time==""){ $time=time(); } $this->cond=date("s",$time); //格式 01 return $this->cond; } //返回当前时间的星期数  function getweekday($time="",$type=""){ if($time==""天津 限行){ $time=time();  } if($type==1){ $this->weekday=date("d",$time);//格式 sun }el if($type==2){ $this->weekday=date("l",$time); //格式 sunday }el{ $this->weekday=date("w",$time);//格式 数字表示 0--6 } return $this->weekday; } //比较两个时间的大小 格式 2018-8-21 8:4:3  function compare($time1,$time2){ $time1=strtotime($time1); $time2=strtotime($time2); if($time1>=$time2){ //第一个时间大于等于第二个时间 返回1 否则返回0 return 1; }el{ return -1; } } //比较两个时间的差值 function diffdate($time1="",$time2=""){ //echo $time1.'------'.$time2.'<br>'; if($time1==""){ $time1=date("y-m-d h:i:s");  } if($time2==""){  $time2=date("y-m-d h:i:s");  } $date1=strtotime($time1); $date2=strtotime($time2); if($date1>$date2){ $diff=$date1-$date2;  }els网络连接受限制e{ $diff=$date2-$date1; } if($diff>=0){ $day=floor($diff/86400); $hour=floor(($diff%86400)/3600); $minute=floor(($diff%3600)/6咳嗽能吃大蒜吗0); $cond=floor(($diff%60)); $this->difftime='相差'.$day.'天'.$hour.'小时'.$minute.'分钟'.$cond.'秒';  } return $this->difftime; } //返回 x年x月x日 function builddate($time="",$type=""){ if($type==1){   $this->longdate = $this->getyear($time) . '年' . $this->getmonth($time) . '月' . $this->getday($time) . '日';  }el{ $this->longdate = $this->getyear($time) . '年' . $this->getmonth($time) . '月' . $this->getday($time) . '日'.$this->gethour($time).':'.$this->getminute($time).':'.$this->getcond($time);  } return $this->longdate;  }}?>

实例化一个对象

<?php  $time_var = "2018-08-21";  $obj = new time();  $year = $obj->getyear($time_var);  echo($year);?>

以上其他的方法也可以按照上面那个例子,输出你想要得到的日期,在开发过程中,可以直接放入在扩展库里,直接引用!

到此这篇关于php时间类完整代码实例的文章就介绍到这了,更多相关php时间类内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-09 01:54:10,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/cefa170c8c65a99ceeb51dc653ba1a4b.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP时间类完整代码实例.doc

本文 PDF 下载地址:PHP时间类完整代码实例.pdf

标签:时间   格式   实例   差值
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图