Top

YYYY-MM-DD Date Conversion


PHP Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  5.0 (of 1 scores)
Date Added  Aug 11, 2004
Last Updated  Sep 18, 2005
Tags  convert  date  yyyymmdd 

Introduction

This will convert a sortable YYYY-MM-DD date into a more presentable date. $date can be set to any date as long as it fits this format.

Grab the Code

<?php
 
    list($year, $month, $day) = split("-", $date);
    $date = date('M d, Y', mktime(0, 0, 0, $month, $day, $year));
 
?>

Comments

  (3)  RSS
Hawkee
Comments: 1,039
 
PHP Snippet:  YYYY-MM-DD Date Conversion
Posted on Aug 11, 2004 3:21 pm
I've used this a countless number of times. I used to have to look it up but I can pretty much do it from memory now.
X-FILE
Comments: 98
 
PHP Snippet:  YYYY-MM-DD Date Conversion
Posted on Aug 17, 2004 1:13 pm
why don't you make a Visual Basic code snippets section? I know it has nothing to do with webs but oh well ..
Hawkee
Comments: 1,039
 
PHP Snippet:  YYYY-MM-DD Date Conversion
Posted on Aug 17, 2004 1:39 pm
If it were to do Visual Basic it would be ASP. I want to introduce new languages slowly though. It takes time for each one to become established

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom