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 

iso8601 reference


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -