Answers for "get month first date and last date in php"

PHP
3

get last month php

$currentMonth = date('M');// if number, then date('m');
//Last month
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");
Posted by: Guest on July-30-2020
1

get month first date and last date in php

$first_day_this_month = date('m-01-Y'); // hard-coded '01' for first day
$last_day_this_month  = date('m-t-Y');
Posted by: Guest on September-06-2021
0

get last month using php

//Last month
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");
Posted by: Guest on November-28-2020

Code answers related to "get month first date and last date in php"

Browse Popular Code Answers by Language