PHP 8.5.0 Alpha 4 available for testing

date_create

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

date_createYeni bir DateTime nesnesi oluşturur

Açıklama

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

DateTime::__construct() için yordamsal sürüm.

DateTime kurucusundan farklı olarak, belirtilen zaman dizgesi geçersiz ise bir istisna yerine false döndürür.

Bağımsız Değişkenler

Bkz: DateTimeImmutable::__construct.

Dönen Değerler

Başarı durumunda yeni bir DateTime örneği, başarısızlık durumunda false döner.

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
-1
bugarindev at gmail dot com
6 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