PHP에서는 strtotime() 함수를 사용하여 날짜(date)를 타임스탬프(timestamp)로 변환할 수 있습니다. 이 함수는 모든 문자열의 날짜 및 시간 설명을 Unix 타임스탬프로 구문 분석할 수 있습니다. 구문 형식은 "strtotime(string)입니다. ) 형식의 날짜)".
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
php는 날짜(날짜)를 타임스탬프(타임스탬프)로 변환합니다.
<?php echo strtotime("2021-06-03 16:00:10")."<br>"; //输出 1620979210 echo strtotime("10 September 2021")."<br>"; //输出 1631203200 echo strtotime("+1 day"), "<br />"."<br>"; //输出明天此时的时间戳 ?>
출력:
1622707210 1631203200 1622787020
지침 :
strtotime() 함수는 모든 문자열 날짜/시간 설명을 Unix 타임스탬프(1970년 1월 1일 00:00:00 GMT 이후의 초 수)로 구문 분석합니다. 이 함수는 date()의 역함수이며 성공하면 타임스탬프를 반환하고 그렇지 않으면 FALSE를 반환합니다. 구문:
int strtotime ( string time [, int now] )
Parameters | Description |
---|---|
time | 필수입니다. 날짜/시간 문자열을 지정합니다. |
now | 선택사항. 반환 값을 계산하는 데 사용되는 타임스탬프를 지정합니다. 이 매개변수를 생략하면 현재 시간이 사용됩니다. |
예:
<?php // 设置时区 date_default_timezone_set("PRC"); echo strtotime("now")."<br>"; echo strtotime("now")."<br>"; echo strtotime("10 September 2021")."<br>"; echo strtotime("+1 day")."<br>"; echo strtotime("+1 week")."<br>"; echo strtotime("+1 week 2 days 4 hours 2 seconds")."<br>"; echo strtotime("next Thursday")."<br>"; echo strtotime("last Monday")."<br>"; ?>
출력:
1622700860 1622700860 1631203200 1622787260 1623305660 1623492862 1623254400 1622390400
권장 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 날짜를 타임스탬프(타임스탬프)로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!