Home  >  Article  >  Backend Development  >  Several methods to calculate time difference in php_PHP tutorial

Several methods to calculate time difference in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:41:58865browse

A simple example is to calculate the number of days to borrow a book, which requires PHP to calculate based on the date of each day. Let’s talk about several methods to implement this date calculation:
(1) It is very easy if you have a database! If it is MSSQL, you can use triggers! Just use the function datediff() that specially calculates the date difference!
If it is MYSQL, use the difference between the two date fields to calculate the result and save it in another numeric field! Call it when needed That’s it!
(2) If there is no database, you have to use PHP’s time and date function! The following is the main explanation:
Example: Calculate the number of days from May 3, 1998 to 1999-6-5:
$startdate=mktime("0","0","0","5","3","1998");
$enddate=mktime("0 ","0","0","6","5","1999");
//The obtained value is the total number of seconds from 1970-1-1 to the parameter time: it is an integer. Then

//The following code is much easier to compile:
$days=round(($enddate-$startdate)/3600/24);
echo $days;
/ /days is the number of days obtained;
?>
If the parameter in mktime() is defaulted, it means using the current date, so that the number of days from the date of borrowing the book can be calculated.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321051.htmlTechArticleA simple example is to calculate the number of days to borrow a book. This requires PHP to calculate based on each day's date. Here's how Let’s talk about several methods to implement this kind of date calculation: (1) If you have a database, it is very easy...
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