Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created January 21, 2014 12:26
Show Gist options
  • Save jlcampana/8539112 to your computer and use it in GitHub Desktop.
Save jlcampana/8539112 to your computer and use it in GitHub Desktop.
Transform a date value retrieved from POST form to store with an ORM
$fechaFromUI = $req->post('selected_date');
$date = DateTime::createFromFormat('d/m/Y', $fecha);
$fechaToStoreOnDatabase = $date->format('Y-m-d');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment