How can I covert this PHP date string:
Thu 19th Aug 2010 @ 7:52PM
to this:
1282247549
Which is done by:
gmdate("D jS M Y @ g:iA", $row['project_deadline'])
The timestamp is from the database with the stored time() function
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.
You can parse that string into a UNIX timestamp with the
strtotimefunction: