If you want to get previous month starting and ending date in PHP? Below is a simple example to get last month and date using PHP.
1 2 | echo date("Y-n-j", strtotime("first day of previous month")); echo date("Y-n-j", strtotime("last day of previous month")); |
The output will be:
1 2 | 2014-10-1 2014-10-31 |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.