Home  >  Article  >  Backend Development  >  PHP date addition and subtraction class, very good_PHP tutorial

PHP date addition and subtraction class, very good_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:44:02894browse

How to use this class? Please see the demo below:

Copy code The code is as follows:

$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 );


Copy code The code is as follows:

$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);


If everything goes well, you can see the following results:
15h41 Saturday 03 Jun
16h31 Saturday 03 Jun
Copy code The code is as follows:

$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 ;

Copy code The code is as follows:

$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;

If everything goes well, you can see to the following results:
Current time: 16h23 Saturday 03 Jun
Time plus 50 minutes: 17h13 Saturday 03 Jun
Interval between two times: 50
Copy code The code is as follows:

class DateAccount{
function __construct(){
}
function DateAdd ( $interval , $number , $date ) {
$date_time_array = getdate ( $date );
$hours = $date_time_array [ "hours" ];
$minutes = $date_time_array [ "minutes" ];
$seconds = $date_time_array [ "seconds" ];
$month = $date_time_array [ "mon" ];
$day = $date_time_array [ "mday" ];
$year = $date_time_array [ "year" ] ;
switch ( $interval ) {
case "yyyy" : $year += $number ; break ;
case "q" : $month +=( $number *3); break ;
case "m" : $month += $number ; break ;
case "y" :
case "d" :
case "w" : $day += $number ; break ;
case "ww" : $day +=( $number *7); break ;
case "h" : $hours += $number ; break ;
case "n" : $minutes += $number ; break ;
case "s" : $seconds += $number ; break ;
}
$timestamp = mktime ( $hours , $minutes , $seconds , $month , $day , $year ) ;
return $timestamp ;
}
function DateDiff ( $interval , $date1 , $date2 ) {
$timedifference = $date2 - $date1 ;
switch ( $interval ) {
case "w" : $retval = bcdiv ( $timedifference ,604800); break ;
case "d" : $retval = bcdiv ( $timedifference ,86400); break ;
case "h" : $ retval = bcdiv ( $timedifference ,3600); break ;
case "n" : $retval = bcdiv ( $timedifference ,60); break ;
case "s" : $retval = $timedifference ; break ;
}
return $retval ;
}
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320605.htmlTechArticleHow to use this class? Please see the demo below: Copy the code as follows: $temptime = time(); echo strftime ( "%Hh%M %A %d %b" , $temptime ); $date = new DateAccount(); $tempti.. .
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn