PHP 日期加減的類,很不錯

2022-09-26 12:18:19 字數 2103 閱讀 2452

如何使用這個類呢?請看下面的演示:

複製** **如下:

$temptime = time();

echo strftime ( "%hh%m %a %d %b" , $temptime );

$date = new dateaccount();

$temptime = $date ->dateadd( "n" ,50, $temptime );

echo "" ;

echo strftime ( "%hh%m %a %d %b" , $temptime );

複製** **如下:

$temptime = time();

echo strftime( "%hh%m %a %d %b",$temptime);

$date = new dateaccount();

$temptime = $date->dateadd("n" ,50,$temptime);

echo "";

echo strftime( "%hh%m %a %d %b",$temptime);

如果一切順利,你可以看到以下結果:

15h41 saturday 03 jun

16h31 saturday 03 jun

複製** **如下:

$currenttime = time();

echo "current time: " . strftime ( "%hh%m %a %d %b" , $currenttime ). "

" ;

$date = new dateaccount();

$newtime = $date ->dateadd ( "n" ,50 , $currenttime );

echo "time plus 50 minutes: " . strftime ( "%hh%m %a %d %b" , $newtime ). "

" ;

$temptime = $date ->datediff ( "n" , $currenttime , $newtime );

echo "interval between two times: " . $temptime ;

複製** **如下:

$currenttime = time();

echo "current time: ". strftime("%hh%m %a %d %b" ,$currenttime)."

"; $date = new dateaccount();

$newtime = $date->dateadd ("n",50 ,$currenttime);

echo "time plus 50 minutes: ". strftime("%hh%m %a %d %b" ,$newtime)."

程式設計客棧gt;";

$temptime = $date->datediff (www.cppcns.com"n",$currenttime ,$newtime);

echo "interval between two times: ".$temptime;

如果一切順利,你可以看到以下結果:

current time: 16h23 saturday 03 jun

time plus 50 minutes: 17h13 saturdaywww.cppcns.com 03 jun

interval between two times: 50

複製** **如下:

php

class dateaccount

function dateadd ( $interval , $number , $date )

$timestamp = mktime ( $hours , $minutes , $seconds , $month , $day , $year );

return $timestamp ;

} function datediff ( $interval , $date1 , $date2 )

return $retval ;

} }

?>

本文標題: php 日期加減的類,很不錯

本文位址:

很不錯的文章

身邊經常可見奇形怪狀的男子。打扮時髦,出手大方,善於與女子曖昧,周轉靈活,腦筋清楚,身上卻不見任何承擔的重量。有些尚且自戀到一定程度,全身上下的名牌,告訴你他的鞋子購自普拉達,衣服來自polo。也能暢談一下哲學或者人生道理,時不時亮出無從考證的身份,炫耀左右逢源,家底豐厚的能力。男人無趣到只能以吹噓...

很不錯的心裡測試

場景 你在森林的深處,你向前走,看見前面有一座很舊的小屋。1 這個小屋的門現在是什麼狀態?開著 關著 2 你走進屋子裡看見一張桌子這個桌子是什麼形狀的?圓形 橢圓形 正方形 長方形 三角形 3 在桌子上有個花瓶,瓶子裡有水,有多少水在花瓶裡?滿的 一半 空的 4 這個瓶子是由什麼材料製造的?玻璃 陶...

c 的委託函式很不錯

比如form1建立form2並顯示form2,想在form2關閉時重新整理form1 其實有很多的方法,但是感覺都不大好,運用c 的委託函式感覺很好,又能解決問題 在form1 宣告委託函式 public delegate void processrefresh 在form2 宣告委託屬性 publ...