Autor YouCode - http://www.youcode.com.ar/php/primer-y-ultimo-dia-del-mes-173
Obtener el primer y ultimo dia de un mes utilizando DateTime
Obtener el primer dia$fecha = new DateTime(); $fecha->modify('first day of this month'); echo $fecha->format('d/m/Y'); // imprime por ejemplo: 01/12/2013
Obtener el último día
$fecha = new DateTime(); $fecha->modify('last day of this month'); echo $fecha->format('d/m/Y'); // imprime por ejemplo: 31/12/2013Funciona en PHP 5.3 o superior
http://www.youcode.com.ar/php/primer-y-ultimo-dia-del-mes-173