Hai, any can help me to change the "Wed Sep 29 14:47:37 +0000 2010" to "Sep 29,2010 at 2:47PM" using regular expression in PHP?
+8
A:
You can use strtotime
. No need for regular expression.
date('M j, Y \a\t g:i A', strtotime('Wed Sep 29 14:47:37 +0000 2010'));
Joyce Babu
2010-10-07 06:12:25