How to Get the Last Day Of Specific Month In Codeigniter ?
Hi Guys,
In this example,I will learn you how to get the last day of specific month in Codeigniter.you can easy and simply get the last day of specific month in Codeigniter.
Sometimes we need How to get the last day of a month from a specific date in Codeigniter for various purposes. We can do it in many ways.
Example:
public function index()
{
$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...
- Codeigniter 4 jQuery Client Side Form Validation Tutorial Example
- Codeigniter - Load more data on page scroll using jQuery and Ajax
- Codeigniter Image Crop With JQuery Croppie Example Tutorial
- CodeIgniter 4 jQuery Form Validation Example
- Codeigniter 4 Ajax Load More Data On Page Scroll With JQuery Tutorial
- CodeIgniter 4 - React JS CRUD with MySQL Example
- Codeigniter Create Bar Chart In PHP With Chart Js
- PHP Codeigniter 4 Google Bar & Line Charts Tutorial