Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 2, 2012 08:35
Show Gist options
  • Save snowman-repos/3817367 to your computer and use it in GitHub Desktop.
Save snowman-repos/3817367 to your computer and use it in GitHub Desktop.
PHP: Change Date from ddmmyyyy to yyyymmdd
$date_array = explode("/",$date); // split the array
$var_day = $date_array[0]; //day seqment
$var_month = $date_array[1]; //month segment
$var_year = $date_array[2]; //year segment
$new_date_format = "$var_year-$var_day-$var_month"; // join them together
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment