update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns date formatted according to given format

DateTime::format

DateTimeImmutable::format

DateTimeInterface::format

date_format

(PHP 5 >= 5.2.0, PHP 7)

DateTime::format -- DateTimeImmutable::format -- DateTimeInterface::format -- date_formatReturns date formatted according to given format

설명

객체 기반 형식

public string DateTime::format ( string $format )
public string DateTimeImmutable::format ( string $format )
public string DateTimeInterface::format ( string $format )

절차식 형식

string date_format ( DateTimeInterface $object , string $format )

Returns date formatted according to given format.

인수

object

절차식 전용: date_create()가 반환하는 DateTime 객체.

format

Format accepted by date().

반환값

Returns the formatted date string on success실패 시 FALSE를 반환합니다.

예제

Example #1 DateTime::format() example

객체 기반 형식

<?php
$date 
= new DateTime('2000-01-01');
echo 
$date->format('Y-m-d H:i:s');
?>

절차식 형식

<?php
$date 
date_create('2000-01-01');
echo 
date_format($date'Y-m-d H:i:s');
?>

위 예제의 출력:

2000-01-01 00:00:00

주의

This method does not use locales. All output is in English.

참고

  • date() - 로컬 날짜/시간을 형식화합니다