Skip to content

Instantly share code, notes, and snippets.

@raystation
Created July 30, 2014 22:22
Show Gist options
  • Save raystation/afe5b0adeb6a2811432a to your computer and use it in GitHub Desktop.
Save raystation/afe5b0adeb6a2811432a to your computer and use it in GitHub Desktop.
php get date
function get_date() {
date_default_timezone_set("America/Los_Angeles");
$date["year"]=date('Y');
$date["day"]=date('D');
return $date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment