Jump to content

Convert date format


dreamwest

Recommended Posts

How can i convert a number date format to a name based one. All dates are stored as digets in my database:

 

10-05-2009

 

and im using a date format to display them in tempates:

 

{$user_details.adddate|date_format:"%d- %m -%Y"}

 

I just need to convert the month to a name, but because the date is stored as a number %F wont work

Link to comment
Share on other sites

Are you sure they are stored in the dd-mm-yyyy format? yyyy-mm-dd is the MySQL (and international) standard. But to get the full textual representation of the month, you can use:

 

<?php
$date = '10-05-2009';
list($d, $m, $y) = explode('-', $date);
echo date('F', mktime(0, 0, 0, (int) $m)) . " $d $y";
?>

And if you use the standard format:

 

<?php
$date = '2009-05-10';
echo date('F j Y', strtotime($date));
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.