개인 테스트의 경우 strtotime("-1 day")을 직접 사용하세요.
는 오늘 전날, 즉 어제를 표시합니다. 오늘은 현재 Unix 시간 기준을 기준으로 결정됩니다.
date_default_timezone_set('PRC'); //기본 시간대
echo "오늘:",date("Y-m-d",time()),"
" ;
echo "오늘:",date("Y-m-d",strtotime("18 June 2008")),"
";
echo "어제:",date("Y-m-d",strtotime ( "-1일")), "
"
echo "내일:",date("Y-m-d",strtotime("+1일")), "
"; > echo "1주일 후:",date("Y-m-d",strtotime("+1 week")), "
"
echo "1주일, 2일, 4시간 2초 후: ",date(" 연월일 G:H:s",strtotime("+1주 2일 4시간 2초")), "
";
echo "다음 목요일:",date("Y-m-d",strtotime("다음 목요일")), "
"
echo "지난 월요일:".date("Y-m-d", strtotime( "지난 월요일"))."
"
echo "1개월 전:".date("Y-m-d",strtotime("지난 달"))."
"
echo "1개월 후:".date("Y-m-d",strtotime("+1개월"))."
"
echo "10년 후:".date("Y-m-d", strtotime( "+10년"))."
";
?>
function GetMinute($Minu , $type='l')
{
if(!strcmp($type,'b'))
$res=date("Y-m-d H:i:s",strtotime("-$ Minu 분"));
if(!strcmp($type,'l'))
$res=date("Y-m-d H:i:s" , strtotime("+$분"));
return $res; >function GetSec($sec,$type='l')
{
if(!strcmp($type,'b'))
$res=date("Y-m-d H:i:s" ,strtotime("-$sec 초"));
else $ res=0;
if(!strcmp($type,'l'))
$res=date("Y-m-d H:i:s",strtotime("+$sec 초"));
그렇지 않으면 $res=0;
$res 반환
}
위 내용은 내용의 측면을 포함하여 PHP 출력 시간 차이를 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.