PHP 출력 시간 차이

WBOY
풀어 주다: 2016-08-08 09:30:53
원래의
1035명이 탐색했습니다.

개인 테스트의 경우 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 분"));

else $res=0;

if(!strcmp($type,'l'))
$res=date("Y-m-d H:i:s" , strtotime("+$분"));

else $res=0;

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 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿