Jump to content

Date question


lxndr

Recommended Posts

[!--quoteo(post=374001:date=May 15 2006, 02:24 PM:name=SemiApocalyptic)--][div class=\'quotetop\']QUOTE(SemiApocalyptic @ May 15 2006, 02:24 PM) [snapback]374001[/snapback][/div][div class=\'quotemain\'][!--quotec--]
This should work...
[code]<?php
function return_date($day,$year=2006) {
    $stamp = mktime(0,0,0,1,$day,$year);
    $date = date("jS F Y",$stamp);
    return $date;
}

echo return_date(134);
?>[/code]
[/quote]

Works great! Thanks a bunch, really appreciate the help.

Link to comment
https://forums.phpfreaks.com/topic/9701-date-question/#findComment-35980
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.