php - Date ISO 8601 in URL -
php - Date ISO 8601 in URL -
we receiving iso 8601 date in url source looks this:
echo $_get['timestamp']; result: 2014-11-12t12:20:00.635
their documentation reads format should yyyy-mm-ddthh:mm:sstzd
example: 2014-11-12t12:20:00+01:00
how come our result ends .635? mean? or interpreting url wrong?
we found out te lastly numbers in timestamp milliseconds. solves our question not our initial problem. timestamp used create sha token seems missing timezone.
php url timestamp iso8601
Comments
Post a Comment