(PHP 5 >= 5.2.0)
DateTime::format -- date_format — Returns date formatted according to given format
Styl obiektowy
$format
)Styl proceduralny
Returns date formatted according to given format.
object
Tylko styl proceduralny: Obiekt DateTime zwracany przez date_create()
format
Format accepted by date().
Returns the formatted date string on success lub FALSE
w przypadku niepowodzenia.
Przykład #1 DateTime::format() example
Styl obiektowy
<?php
$date = new DateTime('2000-01-01');
echo $date->format('Y-m-d H:i:s');
?>
Styl proceduralny
<?php
$date = date_create('2000-01-01');
echo date_format($date, 'Y-m-d H:i:s');
?>
Powyższy przykład wyświetli:
2000-01-01 00:00:00
This method does not use locales. All output is in English.