paypal - what time format is this and how to convert it to unix time in php? -
2015-07-01t23:06:30z
got paypal api. have never seen format before t , z stand for. how can convert unix time in php?
that's date/time in iso8601 format. t
delimiter marking start of time field, , z
(commonly spoken 'zulu') common shorthand gmt or utc.
it's directly supported php can use strtotime()
echo strtotime("2015-07-01t23:06:30z"); // 1435791990
Comments
Post a Comment