I received these details from a function in Paypal. It shows 2012-05-07T07:00:00Z. However I do not know what type of date time is this. I need to know because I will be converting that to UNIX timestamp.
I received these details from a function in Paypal. It shows 2012-05-07T07:00:00Z . However
Share
That timestamp is in ISO 8601 format. The
Tin the middle separates the date part (on the left, in yyyy-mm-dd format) from the time (on the right, in hh:mm:ss). TheZindicates that the timestamp is in UTC.