I got the source data,and in their source contains date with this format
2011-01-12T14:41:35.7042252+01:00
I don’t know which is format of date they are using.?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
its ISO 8601 date (added in PHP 5)
you can get it using
cindate('c')return 2004-02-12T15:19:21+00:00additional Note:
by using
r;date('r')you will get date like this Thu, 21 Dec 2000 16:01:07 +0200REFERNECE