Pyh.conf’25: a new PHP conference for the Russian-speaking community

date_create

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

date_createErstellt ein neues DateTime-Objekt

Beschreibung

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

Dies ist die prozedurale Version von DateTime::__construct().

Anders als der DateTime-Konstruktor gibt diese Funktion false anstelle einer Exception zurück, wenn der übergebene Parameter datetime ungültig ist.

Parameter-Liste

Siehe DateTimeImmutable::__construct.

Rückgabewerte

Gibt eine neue DateTime-Instanz zurück. Bei einem Fehler wird false zurückgegeben.

Siehe auch

add a note

User Contributed Notes 1 note

up
-1
bugarindev at gmail dot com
2 days ago
If $datetime value is `null`, empty string, or whitespace(s), it will default to the current datetime or 'now'.

<?php
$date
= null; // or '' or ' '
var_dump(date_create($date));
?>

returns

<?php
object
(DateTime)#1 (3) {
["date"]=>
string(26) "2025-07-29 00:59:02.992777"
["timezone_type"]=>
int(3)
[
"timezone"]=>
string(3) "UTC"
}
?>
To Top