이전 글 "PHP 함수를 사용하여 특정 연도, 특정 달, 특정 날짜까지의 일수 계산"에서는 strtotime() 함수를 사용하여 두 시간 사이의 시차를 계산하는 방법을 소개했습니다. 주어진 날짜. 이번에는 지정된 날짜 이전과 이후의 날짜를 반환하는 방법에 대해 살펴보겠습니다. 관심 있는 친구들은 그것에 대해 배울 수 있습니다~
이 글의 초점은 주어진 시간에 대해 전날과 다음날의 날짜를 반환하는 것입니다. 그럼 어떻게 해야 할까요?
실제로는 매우 간단합니다. PHP에 내장된 strtotime() 함수를 사용하면 이 작업을 수행할 수 있습니다! 저의 구현 방법을 살펴보겠습니다:
특정 날짜 전날의 구현 코드를 반환합니다.
<?php function GetTime($year,$month,$day){ $timestamp = strtotime("{$year}-{$month}-{$day}"); $time = strtotime("-1 days",$timestamp); echo date("Y-m-d",$time)."<br>"; } GetTime(2000,3,1); GetTime(2021,1,1); ?>
출력 결과:
다음 날의 구현 코드를 반환합니다. 특정 날짜 코드
<?php function GetTime($year,$month,$day){ $timestamp = strtotime("{$year}-{$month}-{$day}"); $time = strtotime("+1 days",$timestamp); echo date("Y-m-d",$time)."<br>"; } GetTime(2000,2,28); GetTime(2021,2,28); ?>
출력 결과:
키 코드 분석:
strtotime() 함수에는 두 가지 용도가 있습니다. 하나는 문자열 형식을 사용하고 이를 영어 텍스트로 설명하는 것입니다. 시간은 UNIX 타임스탬프로 구문 분석되며 하나는 일부 날짜와 시간의 간격을 계산하는 데 사용됩니다.
strtotime() 함수를 사용하여 strtotime("-1 days",$timestamp)
및 strtotime("+1 days",$timestamp)을 사용하여 시간 간격을 계산합니다. )
strtotime("-1 days",$timestamp)
和strtotime("+1 days",$timestamp)<br/>
计算出指定日期前一天和后一天的日期。
"-1 days
"就是减一天,"+1 days
"就是加一天;观察规律,我们还可以根据需要获取前N天,后N天的日期
<?php function GetTime($year,$month,$day){ $timestamp = strtotime("{$year}-{$month}-{$day}"); $time1 = strtotime("-2 days",$timestamp); $time2 = strtotime("+3 days",$timestamp); echo date("Y-m-d",$time1)."<br>"; echo date("Y-m-d",$time2)."<br>"; } GetTime(2000,3,5); ?>
当strtotime() 函数有两个参数时,第二个参数必须是时间戳格式。所以我们需要先使用一次 strtotime()函数将字符串形式的指定日期转为字符串;在使用一次 strtotime()函数进行日期的加减运算,获取算前N天和后N天的日期。
strtotime() 函数的返回值是时间戳格式的;所以需要使用date("Y-m-d",$time)
来格式化日期时间,返回年-月-日
지정된 날짜의 하루 전과 하루 후의 날짜를 계산합니다.
-1일
"은 하루를 빼는 것을 의미하고 "+1일
"은 하루를 더하는 것을 의미합니다. 패턴을 관찰하면 처음 N일과 필요에 따라 다음 N일 날짜 <?php $month1 = strtotime("-1 months",strtotime("2000-1-2")); $month2 = strtotime("+2 months",strtotime("2000-1-2")); echo date("Y-m-d",$month1)."<br>"; echo date("Y-m-d",$month2)."<br><br>"; $year1 = strtotime("-1 years",strtotime("2000-1-2")); $year2 = strtotime("+2 years",strtotime("2000-1-2")); echo date("Y-m-d",$year1)."<br>"; echo date("Y-m-d",$year2)."<br>"; ?>
strtotime() 함수의 반환 값은 타임스탬프 형식이므로 date("Y-m-d",$time)
를 사용하여 날짜와 시간 형식을 지정하고 를 반환해야 합니다. 연-월-일
형식의 날짜입니다.
날짜도 가져올 수 있습니다. 이전 N개월 및 다음 N개월, 첫 번째 N년 및 N년 후 날짜
:<?php header("content-type:text/html;charset=utf-8"); $start = time(); //获取当前时间的时间戳 echo "当前日期为:".date('Y-m-d',$start)."<br />"; $interval = 7 * 24 * 3600; //一周总共的秒数 $previous_week = $start - $interval; //当前时间的时间戳 减去 一周总共的秒数 $next_week = $start + $interval; //当前时间的时间戳 加上 一周总共的秒数 echo "前一周日期为:".date('Y-m-d',$previous_week)."<br />"; echo "后一周日期为:".date('Y-m-d',$next_week)."<br />"; ?>
원하는 경우 이전 주의
날짜를 가져옵니다. 다음 주에는 strtotime() 함수를 사용할 수도 있습니다. 예: 현재 날짜는 2021-8-19이고 이전 주의 날짜와 다음 주의 날짜는 다음과 같습니다.
🎜🎜구현 코드: 🎜rrreee🎜출력 결과: 🎜🎜🎜🎜🎜 두 날짜는 정확히 7일입니다. 이는 실제로 시간차 계산을 역으로 적용한 것입니다. 🎜🎜그렇습니다. 더 알고 싶다면 여기를 클릭하세요. → →🎜php 비디오 튜토리얼🎜🎜위 내용은 PHP 함수 응용 프로그램은 특정 날짜의 전날과 다음날을 반환합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!