DateTimeInterface
PHP Manual

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

Beschreibung

Objektorientierter Stil

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

Prozeduraler Stil

string date_format ( DateTimeInterface $object , string $format )

Returns date formatted according to given format.

Parameter-Liste

object

Nur bei prozeduralem Aufruf: Ein von date_create() zurückgegebens DateTime Objekt.

format

Format accepted by date().

Rückgabewerte

Returns the formatted date string on successIm Fehlerfall wird FALSE zurückgegeben..

Beispiele

Beispiel #1 DateTime::format() example

Objektorientierter Stil

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

Prozeduraler Stil

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

2000-01-01 00:00:00

Anmerkungen

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

Siehe auch


DateTimeInterface
PHP Manual