How to Get the Last Day Of Specific Month In Php ?

03-Apr-2023

.

Admin

Hi Guys,

In this example,I will learn you how to get the last day of specific month in php.you can easy and simply get the last day of specific month in php.

Sometimes we need How to get the last day of a month from a specific date in php for various purposes. We can do it in many ways.

Example:


<?php

$query_date = '2021-01-10';

// Last day of the month.

echo date('Y-m-t', strtotime($query_date));

?>

Output:

2021-01-31

It will help you...

#PHP