datetime.format(3) php man page | unix.com

Man Page: datetime.format

Operating Environment: php

Section: 3

DATETIME.FORMAT(3)							 1							DATETIME.FORMAT(3)

DateTime::format - Returns date formatted according to given format

       Object oriented style

SYNOPSIS
public string DateTime::format (string $format)
DESCRIPTION
string DateTimeImmutable::format (string $format) string DateTimeInterface::format (string $format) Procedural style string date_format (DateTimeInterface $object, string $format) Returns date formatted according to given format.
PARAMETERS
o $object -Procedural style only: A DateTime object returned by date_create(3) o $format - Format accepted by date(3).
RETURN VALUES
Returns the formatted date string on success or FALSE on failure.
EXAMPLES
Example #1 DateTime.format(3) example Object oriented style <?php $date = new DateTime('2000-01-01'); echo $date->format('Y-m-d H:i:s'); ?> Procedural style <?php $date = date_create('2000-01-01'); echo date_format($date, 'Y-m-d H:i:s'); ?> The above example will output: 2000-01-01 00:00:00
NOTES
This method does not use locales. All output is in English.
SEE ALSO
date(3). PHP Documentation Group DATETIME.FORMAT(3)
Related Man Pages
datetime.settimestamp(3) - php
datetime.__construct(3) - php
datetimeinterface.format(3) - php
datetimeimmutable.format(3) - php
datetimeinterface.gettimestamp(3) - php
Similar Topics in the Unix Linux Community
Question about Paderabo date script
How to find the date format
Date validity check
Get the date greater than defined date
Format your scripts with shfmt