Новости | Документация | Download | Webboard | FAQ | Поиск | Контакты


DateTime::format

(PHP 5 >= 5.2.0)

DateTime::formatReturns date formatted according to given format

Описание

public string DateTime::format ( string $format )
string date_format ( DateTime $object , string $format )

Список параметров

object

Procedural style only: A DateTime object returned by date_create()

format

Format accepted by date().

Возвращаемые значения

Returns formatted date on success or FALSE on failure.

Примеры

Пример #1 Displaying the date and time using the procedural form

<?php
date_default_timezone_set
('Europe/London');

$datetime date_create('2008-08-03 14:52:10');
echo 
date_format($datetime'jS, F Y') . "\n";
echo 
date_format($datetimeDATE_ATOM);
?>

Пример #2 Displaying the date and time using the object oriented form

<?php
date_default_timezone_set
('Europe/London');

$datetime = new DateTime('2008-08-03 14:52:10');
echo 
$datetime->format('jS, F Y') . "\n";
echo 
$datetime->format(DATE_ATOM);
?>
?>

Результат выполнения данного примера:

3rd, August 2008
2008-08-03T14:52:10+01:00

Смотрите также

  • date() - Форматирует системную дату/время






  Copyright Apache.ru © 1999-2017, All Rights Reserved Разработка сайта: Inside.ru  
  РЕКЛАМА НА САЙТЕ: |