date_create_immutable

Returns new DateTimeImmutable object

Syntax

date_create_immutable ([ string $datetime = "now" [, DateTimeZone $timezone = NULL ]] ) : DateTimeImmutable

Parameters

datetime

String representing the time.

timezone

A DateTimeZone object representing the desired time zone. If timezone is omitted and time contains no timezone, the current timezone will be used. Note: The timezone parameter and the current timezone are ignored when the time parameter either contains a UNIX timestamp (e.g. 946684800) or specifies a timezone (e.g. 2010-01-28T15:00:00+02:00).

Return

Returns a new DateTimeImmutable instance or FALSE on failure.

Examples

1 · void

<?

$return = date_create_immutable();

echo date_format($return, "Y-m-d h:i:s");

?>
2023-06-02 12:59:57

2 · datetime

<?

$datetime = "01-Jan-2001";

$return = date_create_immutable($datetime);

echo date_format($return, "Y-m-d h:i:s");

?>
2001-01-01 12:00:00

3 · timezone

<?

$datetime = "now";
$timezone = timezone_open("America/Los_Angeles");

$return = date_create_immutable($datetime, $timezone);

echo date_format($return, "Y-m-d h:i:s");

?>
2023-06-02 05:59:57
HomeMenu