PHP時間類完整例項 非常實用

2022-10-06 00:30:24 字數 1471 閱讀 6373

<?php header("content-type:text/html;charset=utf-8");

class time

if($type==1)else

} //返回當前時間的月份 time:時間格式為時間戳 2013-3-27

function getmonth($time="",$type="")

switch($type)

return $this->month;

} //返回當前時間的天數 time:時間格式為時間戳 2013-3-4

function getdqxryday($time="",$type="")

if($type==1)else

return $this->day;

} //返回當前時間的小時 2010-11-10 1:19:21 20:19:21

function gethour($time="",$type=""程式設計客棧)

switch($type)

return $this->hour;

} //返回當前時間的分鐘數 1:9:18

function getminute($time="",$type=www.cppcns.com"")

$this->minute=date("i",$time); //格式 09

return $this->minute;

} //返回當前時間的秒數 20:19:01

function getsecond($time="",$type="")

$this->second=date("s",$time); //格式 01

return $this->second;

} //返回當前時間的星期數

function getweekday($time="",$type="程式設計客棧")

if($type==1)else if($type==2)else

return $this->weekday;

} //比較兩個時間的大小 格式 2013-3-4 8:4:3

function compare($time1,$time2)else

} //比較兩個時間的差值

function diffdate($time1="",$time2="")

if($time2=="")

$date1=strtotime($time1);

$date2=strtotime($time2);

if($date1>$date2)else

if($diff>=0)

return $this->difftime;

} //返回 x年x月x日

function builddate($time="",$type="")else

return $this->longdate; }}

?>

本文標題: php時間類完整例項(非常實用)

本文位址:

PHP 類的完整應用例項

該例項完整應用了php中的類 用參考 class classa function destruct 下面這個是乙個經過final修飾後,不可重寫 覆蓋 的方法 public final function add a,b,num final class classb extends classa fu...

php封裝的mysqli類完整例項

header content type text html charset utf 8 掌握滿足單例模式的必要條件 1 私有的構造方法 為了防止在類外使用new關鍵字例項化物件 2 私有的成員屬性 為了防止在類外引入這個存放物件的屬性 3 私有的轉殖方法 為了防止在類外通過clone成生另乙個物件 ...

php封裝的mysqli類完整例項

類 掌握滿足單例模式的必要條件 1 私有的構造方法 為了防止在類外使用new關鍵字例項化物件 2 私有的成員屬性 為了防止在類外引入這個存放物件的屬性 3 私有的轉殖方法 為了防止在類外通過clone成生另乙個物件 4 公有的靜態方法 為了讓使用者進行例項化物件的操作 class connectmy...