wordpress - DATETIME to real time in PHP -


getting time wordpress post (the field being post_date_gmt stored in datetime), how can convert information (e.g 2011-03-23 20:28:26) actual, maleable date in php? (like thursday, march 23rd, 2011)

echo date('r', strtotime($datetime));  echo date('r', strtotime('2011-03-23 20:28:26'));  echo date('l, f js, y', strtotime('2011-03-23 20:28:26')); 

see date() more formatting options.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -