Skip to content

Instantly share code, notes, and snippets.

@rzds
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save rzds/cf758033472c1ba6e743 to your computer and use it in GitHub Desktop.

Select an option

Save rzds/cf758033472c1ba6e743 to your computer and use it in GitHub Desktop.
<?php
/**
* Convert date in PHP
* available for php > 5.3
*/
function convertDate($date, $old_format="d/m/Y", $new_format='Y-m-d'){
$datetime = DateTime::createFromFormat($old_format, $date);
return $datetime->format($new_format);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment