Home > Backend Development > PHP Tutorial > PHP function to compare whether there is an intersection between time periods and time periods

PHP function to compare whether there is an intersection between time periods and time periods

怪我咯
Release: 2023-03-12 22:32:02
Original
1716 people have browsed it

PHPCompare the implementation code of time period one and time period two to see if there is any intersection. Friends who need it can refer to it.

The code is as follows:

/* 
*比较时间段一与时间段二是否有交集 
*/ 
function isMixTime($begintime1,$endtime1,$begintime2,$endtime2) 
{ 
$status = $begintime2 - $begintime1; 
if($status>0){ 
$status2 = $begintime2 - $endtime1; 
if($status2>0){ 
return false; 
}else{ 
return true; 
} 
}else{ 
$status2 = $begintime1 - $endtime2; 
if($status2>0){ 
return false; 
}else{ 
return true; 
} 
} 
}
Copy after login

The above is the detailed content of PHP function to compare whether there is an intersection between time periods and time periods. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template