“PHP Obtenha a data final do mês” Respostas de código

PHP Comece a data de início e término do mês e ano

<?php

$query_date = '2010-02-04';

// First day of the month.
echo date('Y-m-01', strtotime($query_date));

// Last day of the month.
echo date('Y-m-t', strtotime($query_date));
Indian Gooner

PHP Obtenha a data final do mês

// First date of the month.
$monthFirstDate = date('Y-m-01', strtotime('today'));

// Last date of the month.
$monthLastDate = date('Y-m-t', strtotime('today'));

// Second last date of the month
$monthLastSecondDate = date('Y-m-d', strtotime('-2 day', strtotime('today')));
Lokesh003

PHP Último dia do mês

$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));
Evil Echidna

Respostas semelhantes a “PHP Obtenha a data final do mês”

Perguntas semelhantes a “PHP Obtenha a data final do mês”

Procure respostas de código populares por idioma

Procurar outros idiomas de código