MyBB Community Forums

Full Version: Convertine dateline to the date
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I go about changing the "dateline" for a thread into the actual date. Example

convert 1147632930 to Jan 10, 2009
You can do this:

my_date($mybb->settings['dateformat'], {timestamp});

Replacing {timestamp} with the variable with the dateline.
when i do that, it makes it "Today and yesterday" I simply just want the actual date. Is that possible?
You want

my_date($mybb->settings['dateformat'], {timestamp}, "", 0); 

The 0 will disable the today/tomorrow.
Also is there a way to format it so that instead of numbers it will give me the actual month? Such as July 04, 2009
my_date("F d, Y", {timestamp}, "", 0); 

http://www.php.net/date