PHP Check If Current Date is Between Two Dates Example
In this example, i want to share with you small example of how to check current date is between startdate and enddate in php. we will check if today date is between two dates in php. we can simply check if current date is between two dates in php.
I written it very simple way so you can also use with laravel, codeigniter, zend php framework also. it's core php code for check if date is between two dates php.
Many times we require to check current date is between given two dates or not for subscription, trial, user expire time etc. so when user will register at that time will decide when he will expire and we will check it with current date always. so might be this post can help you to check if date exists between two dates in php.
You can check bellow simple example so it can help you.
Example:
<?php
$currentDate = date('Y-m-d');
$currentDate = date('Y-m-d', strtotime($currentDate));
$startDate = date('Y-m-d', strtotime("01/09/2019"));
$endDate = date('Y-m-d', strtotime("01/10/2019"));
if (($currentDate >= $startDate) && ($currentDate <= $endDate)){
echo "Current date is between two dates";
}else{
echo "Current date is not between two dates";
}
If current date is 09/10/2019 than it will return bellow output:
Output:
Current date is between two dates
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 String to Date in PHP?
- PHP MySQL DataTables Server-side Processing Example
- How to Change Date Format in JQuery?
- PHP CRUD Operation Using Ajax and JQuery Example
- PHP Capture Screenshot of Website from URL Example
- PHP Remove Duplicates from Multidimensional Array Example
- PHP JQuery Select2 Ajax Autocomplete Example
- How to Get Folder Path from File Path in PHP?
- How to Remove White Space from String in PHP?
- How to Get a Current Page URL in PHP?
- How to Convert Array Key to Lowercase in PHP?
- How to Generate Random Alphanumeric String in PHP?
- How to access PHP variables in JQuery?
- How to Find Day Name from Specific Date in PHP?