Funkcje daty i czasu
PHP Manual

date_create

(PHP 5 >= 5.2.0)

date_createReturns new DateTime object

Opis

DateTime date_create ([ string $time= "now" [, DateTimeZone $timezone= NULL ]] )

Parametry

time

String in a format accepted by strtotime(), defaults to "now".

timezone

Time zone of the time.

Zwracane wartości

Returns DateTime object on success or FALSE on failure.

Przykłady

Przykład #1 date_create() example

<?php
date_default_timezone_set
('Europe/London');

$datetime date_create('2008-08-03 14:52:10');
echo 
date_format($datetimeDATE_ATOM);
?>

Powyższy przykład wyświetli:

2008-08-03T14:52:10+01:00


Funkcje daty i czasu
PHP Manual