Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zerobugs-oficial
Created June 18, 2020 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerobugs-oficial/9d451553d8389c9e9111b9f995ee082c to your computer and use it in GitHub Desktop.
Save zerobugs-oficial/9d451553d8389c9e9111b9f995ee082c to your computer and use it in GitHub Desktop.
Formatar datas para o formato brasileiro usando PHP
function data($data){
return date("d/m/Y", strtotime($data));
}
// exemplo de utilização:
echo data('2017-05-04');
// vai retornar 04/05/2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment