Skip to content

Instantly share code, notes, and snippets.

@bkmorse
Created April 2, 2014 16:26
Show Gist options
  • Select an option

  • Save bkmorse/9937583 to your computer and use it in GitHub Desktop.

Select an option

Save bkmorse/9937583 to your computer and use it in GitHub Desktop.
<?php
// convert mm-dd-yyyy to yyyy-mm-dd
$date['date_of_birth'] = '12-30-1980';
print date('Y-m-d', strtotime($data['date_of_birth'])); // outputs 1970-01-01
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment