Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 8, 2021 15:50
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 parzibyte/136d36c8c8e08c5439ec8628a5262b71 to your computer and use it in GitHub Desktop.
Save parzibyte/136d36c8c8e08c5439ec8628a5262b71 to your computer and use it in GitHub Desktop.
<?php
date_default_timezone_set("America/Mexico_City");
$tiempoMesPasado = strtotime("last day of previous month");
$anioPasado = date("Y", $tiempoMesPasado);
$mesPasado = date("m", $tiempoMesPasado);
printf("Año pasado: %s. Mes pasado: %s", $anioPasado, $mesPasado);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment