Skip to content

Instantly share code, notes, and snippets.

@IsaacAndres
Last active August 29, 2019 20:24
Show Gist options
  • Save IsaacAndres/e4571513d2872183676aae29de02e8a1 to your computer and use it in GitHub Desktop.
Save IsaacAndres/e4571513d2872183676aae29de02e8a1 to your computer and use it in GitHub Desktop.
Convertir fecha a español
<?php
setlocale(LC_ALL, 'es_ES');
foreach ($listado as $key => $venta) {
$fecha = $venta->fecha;
$date = new Datetime("$fecha");
$fecha = strftime("%d %B %Y", $date->getTimestamp());
$listado[$key]->fecha = $fecha;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment