真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

PHP如何實現(xiàn)時間類-創(chuàng)新互聯(lián)

這篇文章主要介紹了PHP如何實現(xiàn)時間類,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

在塔城等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站建設(shè)、成都做網(wǎng)站 網(wǎng)站設(shè)計制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計,成都全網(wǎng)營銷,外貿(mào)營銷網(wǎng)站建設(shè),塔城網(wǎng)站建設(shè)費用合理。

具體如下:

year=date("y",$time); //返回兩位的年份 13
 }else{
  return $this->year=date("Y",$time); //返回四位的年份 2013
 }
 }
 //返回當(dāng)前時間的月份 time:時間格式為時間戳 2013-3-27
 function getmonth($time="",$type=""){
 if($time==""){
  $time=time();
 }
 switch($type){
  case 1:$this->month=date("n",$time);//返回格式 3
   break;
  case 2:$this->month=date("m",$time);//返回格式 03
   break;
  case 3:$this->month=date("M",$time);//返回格式 Mar
   break;
  case 4:$this->month=date("F",$time);//返回格式 March
   break;
  default:$this->month=date("n",$time);
 }
 return $this->month; 
 }
 //返回當(dāng)前時間的天數(shù) time:時間格式為時間戳 2013-3-4 
 function getday($time="",$type=""){
 if($time==""){
  $time=time();
 }
 if($type==1){
  $this->day=date("d",$time);//返回格式 04
 }else{
  $this->day=date("j",$time);//返回格式 4
 }
 return $this->day;
 }
 //返回當(dāng)前時間的小時  2010-11-10 1:19:21 20:19:21 
 function gethour($time="",$type=""){
 if($time==""){
  $time=time();
 } 
 switch($type){
  case 1:$this->hour=date("H",$time);//格式: 1 20
   break;
  case 2:$this->hour=date("h",$time);//格式  01 08
   break;
  case 3:$this->hour=date("G",$time);//格式  1 20
   break;
  case 4:$this->hour=date("g",$time);//格式  1 8
   break; 
  default :$this->hour=date("H",$time);
 }
 return $this->hour;
 }
 //返回當(dāng)前時間的分鐘數(shù) 1:9:18  
 function getminute($time="",$type=""){
 if($time==""){
  $time=time();
 }
 $this->minute=date("i",$time); //格式  09
 return $this->minute;
 }
 //返回當(dāng)前時間的秒數(shù)  20:19:01
 function getsecond($time="",$type=""){
 if($time==""){
  $time=time();
 }
 $this->second=date("s",$time); //格式  01
 return $this->second;
 }
 //返回當(dāng)前時間的星期數(shù) 
 function getweekday($time="",$type=""){
 if($time==""){
  $time=time(); 
 }
 if($type==1){
  $this->weekday=date("D",$time);//格式  Sun
 }else if($type==2){
  $this->weekday=date("l",$time); //格式 Sunday
 }else{
  $this->weekday=date("w",$time);//格式 數(shù)字表示 0--6
 }
 return $this->weekday;
 }
 //比較兩個時間的大小 格式 2013-3-4 8:4:3  
 function compare($time1,$time2){
 $time1=strtotime($time1);
 $time2=strtotime($time2);
 if($time1>=$time2){  //第一個時間大于等于第二個時間 返回1 否則返回0
  return 1;
 }else{
  return -1;
 }
 }
 //比較兩個時間的差值
 function diffdate($time1="",$time2=""){
 //echo $time1.'------'.$time2.'
';  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;   }else{   $diff=$date2-$date1;  }  if($diff>=0){   $day=floor($diff/86400);   $hour=floor(($diff%86400)/3600);   $minute=floor(($diff%3600)/60);   $second=floor(($diff%60));   $this->diffTime='相差'.$day.'天'.$hour.'小時'.$minute.'分鐘'.$second.'秒';   }  return $this->diffTime;  }  //返回 X年X月X日  function buildDate($time="",$type=""){  if($type==1){      $this->longDate = $this->getyear($time) . '年' . $this->getmonth($time) . '月' . $this->getday($time) . '日';    }else{   $this->longDate = $this->getyear($time) . '年' . $this->getmonth($time) . '月' . $this->getday($time) . '日'.$this->gethour($time).':'.$this->getminute($time).':'.$this->getsecond($time);    }  return $this->longDate;    } } ?>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“PHP如何實現(xiàn)時間類”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


新聞標(biāo)題:PHP如何實現(xiàn)時間類-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/jceio.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部