Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 날짜 형식을 변경하는 방법이 있습니까?

<시간/>

예, PHP에서 strtotime()과 함께 date()를 사용하여 날짜 형식을 변경합니다. 다음이 우리의 날짜라고 가정해 봅시다 -

$dateValue = "2020-09-19";

strtotime() 메서드를 사용하여 날짜 형식 변경 -

$modifiedDate= date("d-m-Y", strtotime($dateValue));  

예시

<!DOCTYPE html>
<html>
<body>
<?php
   $dateValue = "2020-09-19";
   echo "The original date format is=",$dateValue,"<br>";
   $modifiedDate= date("d-m-Y", strtotime($dateValue));  
   echo "The changed date format is= ".$modifiedDate;  
?>
</body>
</html>

출력

그러면 다음과 같은 출력이 생성됩니다.

The original date format is=2020-09-19
The changed date format is= 19-09-2020