-
Notifications
You must be signed in to change notification settings - Fork 159
Date and Time
Dmitriy Zayceff edited this page Apr 30, 2015
·
7 revisions
There is a few classes to work with date, time and timezones:
-
php\time\Time
to work with datetime. -
php\time\TimeZone
to work with timezones. -
php\time\TimeFormat
to parse and format time.
-
DateTime
->Time
,TimeZone
-
time
->Time::seconds()
unix time in seconds (UTC),Time::now
,Time::today
-
???
->Time::millis()
unix time in milliseconds -
microtime(1)
->Time::millis() / 1000
-
strtotime
->TimeFormat::parse
-
date
->TimeFormat::format
How to format a date
use php\time\Time;
$time = Time::now();
echo $time->toString('d-m-Y');
// or you can use TimeFormat
$tf = new TimeFormat('d-m-Y');
echo $tf->format(Time::now());
JPHP Group 2015