코드 복사 코드는 다음과 같습니다.
/*
*기간 1과 기간 2를 비교하여 있는지 확인하세요. 교차점임
* /
function isMixTime($begintime1,$endtime1,$begintime2,$endtime2)
{
$status = $begintime2 - $begintime1
if($status> 0){
$ status2 = $begintime2 - $endtime1;
if($status2>0){
false 반환
}else{
true 반환; >}else{
$status2 = $begintime1 - $endtime2;
if($status2>0){
return false;
}else{
return true; 🎜>}
}
위에는 1시대와 2시대의 교집합이 있는지 비교하는 PHP 함수를 소개한 내용을 포함하여, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.