$f = "12/04/2019";
echo $f . "\n";
$fecha = DateTime::createFromFormat('d/m/Y', $f);
echo $fecha->format('Y-m-d') . "\n";
Y devolverá la fecha de la siguiente forma:
2019-04-12
En la ayuda de PHP podremos obtener mas información sobre esta clase:
https://www.php.net/manual/es/datetime.createfromformat.php
Y esto es todo, y feliz programming
Saludos
Alex.
También puede interesarte:
Configurar Laravel Sail para utilizar un MySql externo existente |
||