date_create

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

date_createcreate a new DateTime object

Descrizione

date_create(string $datetime = "now", ?DateTimeZone $timezone = null): DateTime|false

This is the procedural version of DateTime::__construct().

Unlike the DateTime constructor, it will return false instead of an exception if the passed in datetime string is invalid.

Elenco dei parametri

See DateTimeImmutable::__construct.

Valori restituiti

Returns a new DateTime instance o false in caso di fallimento

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top