PHP Conference Fukuoka 2025

date_create

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

date_createПсевдонім DateTime::__construct()

Опис

Ця функція є псевдонімом до: DateTime::__construct()

add a note

User Contributed Notes 1 note

up
0
bugarindev at gmail dot com
2 months 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<?phpobject(DateTime)#1 (3) {  ["date"]=>  string(26) "2025-07-29 00:59:02.992777"  ["timezone_type"]=>  int(3)  ["timezone"]=>  string(3) "UTC"}?>
To Top