variable una semana obtener mes hora fecha español actual php date

una - ¿Cómo puedo obtener el mes actual y los tres meses anteriores utilizando PHP?



obtener mes actual php (9)

¡Cuidado con la FUAH ! Las otras respuestas fallarán cuando se realicen el 31 del mes. Use esto en su lugar:

/* Handles month/year increment calculations in a safe way, avoiding the pitfall of ''fuzzy'' month units. Returns a DateTime object with incremented month values, and a date value == 1. */ function incrementDate($startDate, $monthIncrement = 0) { $startingTimeStamp = $startDate->getTimestamp(); // Get the month value of the given date: $monthString = date(''Y-m'', $startingTimeStamp); // Create a date string corresponding to the 1st of the give month, // making it safe for monthly calculations: $safeDateString = "first day of $monthString"; // Increment date by given month increments: $incrementedDateString = "$safeDateString $monthIncrement month"; $newTimeStamp = strtotime($incrementedDateString); $newDate = DateTime::createFromFormat(''U'', $newTimeStamp); return $newDate; } $currentDate = new DateTime(); $oneMonthAgo = incrementDate($currentDate, -1); $twoMonthsAgo = incrementDate($currentDate, -2); $threeMonthsAgo = incrementDate($currentDate, -3); echo "THIS: ".$currentDate->format(''F Y'') . "<br>"; echo "1 AGO: ".$oneMonthAgo->format(''F Y'') . "<br>"; echo "2 AGO: ".$twoMonthsAgo->format(''F Y'') . "<br>"; echo "3 AGO: ".$threeMonthsAgo->format(''F Y'') . "<br>";

Para más, vea mi respuesta FUAH

¿Alguien me dirá cómo obtener el mes actual y los tres meses anteriores utilizando PHP?

Por ejemplo:

echo date("y:M:d");

La salida será: 09: oct. 20.

Pero yo necesito:

agosto

septiembre

octubre

como la salida.

Gracias por adelantado...

Fero


Intente usar la función strtotime incorporada en PHP y use ''F'' para la salida textual completa:

echo date(''y:F:d''); // first month echo date(''y:F:d'', strtotime(''-1 month'')); // previous month echo date(''y:F:d'', strtotime(''-2 month'')); // second previous month echo date(''y:F:d'', strtotime(''-3 month'')); // third previous month


Para la representación textual completa del mes, debe pasar "F":

echo date("y:F:d");

para el mes anterior puedes usar

echo date("y:F:d",strtotime("-1 Months")) ;


Si quieres estar OOP al respecto, prueba esto:

$dp=new DatePeriod(date_create(),DateInterval::createFromDateString(''last month''),2); foreach($dp as $dt) echo $dt->format("y:M:d"),"/n"; //or "y F d"

salidas:

  • 09: oct: 20
  • 09: sep: 20
  • 09: agosto: 20

Tendrás que usar la fecha ("F"); para obtener la representación en texto completo de la fecha.


este mes

date("y:M:d", mktime(0, 0, 0, date(''m''), date(''d''), date(''Y'')));

meses previos

date("y:M:d", mktime(0, 0, 0, date(''m'') - 1, date(''d''), date(''Y''))); date("y:M:d", mktime(0, 0, 0, date(''m'') - 2, date(''d''), date(''Y'')));


DECLARE @STARTDATE INT SET @STARTDATE = -12 WHILE @STARTDATE < 0 BEGIN PRINT DATENAME(MONTH,DATEADD(MM,@STARTDATE,GETDATE()))+'' ''+ DATENAME(YEAR, DATEADD(MM,@STARTDATE ,GETDATE())) SET @STARTDATE =@STARTDATE+1 END


DECLARE @STARTDATE VARCHAR(MAX) DECLARE @ENDDATE VARCHAR(MAX) DECLARE @A INT SET @A=-12 SET @STARTDATE= DATENAME(MONTH,GETDATE())+ DATENAME(YEAR, DATEADD(MONTH,0,GETDATE())) WHILE @A < 0 BEGIN SET @STARTDATE = DATENAME(MONTH,DATEADD(MONTH,@A,GETDATE()))+'' ''+ DATENAME(YEAR, DATEADD(MONTH,@A,GETDATE())) SET @A=@A+1 PRINT @STARTDATE END


echo date(''F'', strtotime(''-2 month'')), ''<br>'', date(''F'', strtotime(''last month'')), ''<br>'', date(''F'');