본문 바로가기
Php

[PHP] Unix timestamp을 날짜로 변환 하기

by maestro_shane 2021. 2. 24.

PhP Unix timestamp 날짜로 변환하기 !

 

$timestamp = time();

 

$timestamp = strtotime("2021-02-4 00:00:00");

 

echo date("Y-m-d h:i:s", $timestamp);

 

 

 

댓글