Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Created January 6, 2017 19:28
Show Gist options
  • Select an option

  • Save YurePereira/d0f39103a36a5dccc93db143d5d6aba0 to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/d0f39103a36a5dccc93db143d5d6aba0 to your computer and use it in GitHub Desktop.
Especificando sua própria date na instanciação da classe DateTime.
<?php
$myDateTime = new DateTime('2000-10-12 09:01:10');
echo $myDateTime->format('d-m-Y') . PHP_EOL;//12-10-2000
echo $myDateTime->format('d-m-Y H:i:s');//12-10-2000 09:01:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment