What do you use to convert between different calendar formats?
The calendar extension.
To convert between calendar systems, you must first…
…convert to Julian Day Count, then to the calendar system of your choice.
What is Julian Day Count?
A count of days starting from January 1st, 4713 BC.
How is the date and time information stored internally in PHP?
As a 64-bit number.
Why should you use:
$date = strtotime(‘+7 days’, $date)
and not:
$date += 72460*60
Because the former takes DST and leap years into consideration.
What class offers a representation of date and time?
The DateTime class.
What extension is useful as a stopwatch class?
HRTime