PHP lags 23 seconds
Bug report # 35958 must have the most obscure one ever:
"strftime usually returns a string from the number of seconds since 1 jan 1970. Now, it lags and returns a string representing 23 seconds too late."
If you know what's going on though, it isn't really that weird. Every once in a while the IERS announces a new leap second to "keep the broadcast standards for time of day close to mean solar time ". At the moment the difference is 23 seconds which is reflected in comparing the leap second adjusted time zone information file with the non-adjusted one. You can see the leap second with this little shell script:
#!/bin/bash export TZ=Europe/Amsterdam date --date "@1136073621" date --date "@1136073622" date --date "@1136073623" export TZ=right/Europe/Amsterdam date --date "@1136073621" date --date "@1136073622" date --date "@1136073623"
The output is:
Sun Jan 1 01:00:21 CET 2006 Sun Jan 1 01:00:22 CET 2006 Sun Jan 1 01:00:23 CET 2006 Sun Jan 1 00:59:59 CET 2006 Sun Jan 1 00:59:60 CET 2006 Sun Jan 1 01:00:00 CET 2006
The output with the "right/Europe/Amsterdam" timezone is actually the correct time, but this will obviously confused too many computer programs. Most often you will not see this one in use.
The new date/time code in PHP 5.1 does not support the leap second either. I was playing with it while developing, but thought it to be to confusing. Seems I was right there :)
Life Line
I hiked 7.4km in 4h45m01s
I hiked 5.5km in 4h19m08s
Updated a restaurant, a pub, and a hotel; Deleted a resort; Confirmed a farm shop
I hiked 1.3km in 1h1m31s
I hiked 1.9km in 1h52m56s
I hiked 2.9km in 2h55m04s
I hiked 1.6km in 1h16m55s
I hiked 4.8km in 1h22m37s
Specify whether pitches are lit
Survey whether benches have backrests
Specify what can be recycled in recycling containers
Specify type of recycling amenities
Survey postbox collection times
Determine whether any glass or just glass bottles can be recycled here
Specify whether bicycles can be charged at charging stations
Specify whether pedestrian crossings have islands
Specify whether pedestrian crossings have traffic signals
Specify parking types
Specify bicycle parking types
Add whether public transport stops are lit
Specify whether public transport stops have tactile paving
Determine the heights of kerbs at crossings
Specify whether roads have lane markings
Specify whether there are cycleways

Shortlink
This article has a short URL available: https://drck.me/php-l-23-s-4na