DateTimeInterface
PHP Manual

DateTime::format

DateTimeImmutable::format

DateTimeInterface::format

date_format

(PHP 5 >= 5.2.0)

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

Descrizione

Stile orientato agli oggetti

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

Stile procedurale

string date_format ( DateTimeInterface $object , string $format )

Returns date formatted according to given format.

Elenco dei parametri

oggetto

Solo per lo stile procedurale: Un oggetto DateTime restituito da date_create()

format

Format accepted by date().

Valori restituiti

Returns the formatted date string on success o FALSE in caso di fallimento.

Esempi

Example #1 DateTime::format() example

Stile orientato agli oggetti

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

Stile procedurale

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

Il precedente esempio visualizzerĂ :

2000-01-01 00:00:00

Note

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

Vedere anche:


DateTimeInterface
PHP Manual