[PHP]unix time 유닉스타임 10자리

해내면 그만!XX·2023년 1월 22일
0
post-custom-banner

Unix timestamp는 세계표준시(영국 그리니치 천문대) 기준으로 1970년 1월 1일 0시 0분 0초를 0으로 시작하여 1초마다 1을 더하는 방식으로 계산되는 시간 표시 방법입니다.

$timestamp = time();
$timestamp = strtotime("2017-02-08 14:47:32");
echo $timestamp;

10자리를 나타내는 방법이다.

php 유닉스타임이랑 c#에서 똑같은 값을 가져오는 유닉스타임

echo time();
var unixtimestamp =  (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
var unixtimestamp = Math.Round(Convert.ToDecimal(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds), 0).ToString();

참조
https://blog.devez.net/ko/304
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=vucket&logNo=220934912169
https://www.delftstack.com/ko/howto/csharp/how-to-get-the-unix-timestamp-in-csharp/
https://andjjip.tistory.com/191
https://blog.gaerae.com/2014/12/unix-timestamp.html
https://hongjinhyeon.tistory.com/72

post-custom-banner

0개의 댓글