How to Get Last Day of Month from Date in PHP?
Hello Dev,
In this post, we will learn php get last day of month from date. This article goes in detailed on php date last day of month from date. This example will help you how to get last day of month from date in php. you can see php find last day of month from date.
In this example, i will give you following two simple examples with output to find last day of month from date in php. so, let's see the one by one example:
Example 1:
If you want to get the last day of the month for a specific date, you can use "strtotime" to convert a date string to a Unix timestamp and then format it:
index.php
<?php
$specificDate = '2023-04-15';
$lastDayOfMonth = date('Y-m-t', strtotime($specificDate));
echo $lastDayOfMonth;
?>
Output:
2023-04-30
Replace '2023-04-15' with your specific date. This code will output the last day of the month for the specified date.
Example 2:
In PHP, you can use the "date" and "strtotime" functions to get the last day of the month. Here's an example:
index.php
<?php
$lastDayOfMonth = date('Y-m-t'); /* 't' returns the number of days in the month */
echo $lastDayOfMonth;
?>
Output:
2023-12-31
In this example, "date('Y-m-t')" will give you the current date in the format 'Y-m-d', where 't' is replaced by the number of days in the month. This effectively gives you the last day of the month.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Convert Datetime into Milliseconds in PHP?
- How to Increase Session Timeout in PHP?
- How to Extract Img SRC, Title and Alt from HTML in PHP?
- How to Convert Bytes into KB, MB and GB in PHP?
- How to Convert Array to XML in PHP?
- How to Upgrade PHP Version from 8.2 to 8.3 in Ubuntu?
- How to Install PHP 8.3 on Ubuntu 22.04?
- How to Send Mail using PHPMailer in Laravel?
- PHP MySQL Login with Google Account Example
- PHP MySQL Image Gallery CRUD Example
- PHP JQuery Ajax Image Upload Example Tutorial
- PHP Ajax Dependent Dropdown List Example