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

说明

面向对象风格

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.

参见


DateTimeInterface
PHP Manual