This function returns the date in the RFC822. Remember to add the timezone difference in the first argument and the relative time zone.
function RFC822date($mytstamp,$tzone = "GMT") {
return gmdate("D, d M Y h:i:s", $mytstamp) . " " . $tzone;
}
function RFC822date($mytstamp,$tzone = "GMT") {
return gmdate("D, d M Y h:i:s", $mytstamp) . " " . $tzone;
}
Comments
Post a Comment