php check if date is bigger than today

<?php
 $date_now = new DateTime();
 $date2    = new DateTime("01/02/2016");

if ($date_now > $date2) {
    echo 'greater than';
}else{
    echo 'Less than';
}

4.25
8
PaulRein 125 points

                                    &lt;?php
 $date_now = date(&quot;Y-m-d&quot;); // this format is string comparable

if ($date_now &gt; '2016-01-02') {
    echo 'greater than';
}else{
    echo 'Less than';
}

4.25 (8 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
php date validation greater than today by 7days check if date is greater or small between two dates php check if date greater than today php php check if date is greater than 30 days php if variable date is less then today date php count if date is less than today check if string to date is greater than today php php check if time is bigger than today find date is less than current date in php warning if date is greater than current date php php check if datetime is greater than today php check if date is greater than today php php if date time bigger than php check if one date is greater than the other how to check date if bigger then 1 to 15 php check if end date is greater than start date in php how to check date is greater than current date in php if date less than today php check date greater than current date in php check if date is greater than today's date php php date bigger than 0 today php date bigger than today check if a date is greater than other in php how to check if a date is greater than another date in php php check if given date is greater than curent date checking if date is greater in php check if date greater or less than today php check if a date is greater than other php php check if a datetime is bigger then other php if datetime is less than today php if date less than today php check if date if less than today date php check if time is greater than php if current date is greater than and days php if current date is greater than check date greater than today php php check if date is greater than php if date is less than today if current date is greater than created at date php php check if date less than today php check if date is less than today check date less than current date php php check if date is less than now php check if datetime is greater than now php check if date is bigger than today data validation greater than today php if date greater than today php if current date is greater than php php date greater than date php how to check date is greater than other date in php date is greater than today older than today php php check if date is greater than now if date greter than in php current date and current time greather than php php date is greather than curren date php date is greather than curren tdate date should not be greater than today php php if date is greater than if date is equal to or less than current date php equal or less than date compare all php how to compare dates php equal or grater siin php if date greater than now php check date greater than today php date greater than check if date entered y user is jreater than today in php php compare dates greater than if date is greater than today php if time is less than today php if date is older than today php date less than or greater than php date is older than today check expiry date greater than today php php timestamp greater than how to Not more than today php php greater than or equal to date php current date greater than time more than now check if date is less than today php check if date is greater than today php check date is greater than today in php php if date is greater than today date should be greater than today in php php check if date is more than or equals to current date php if date older than current date php if date older than today php check which date is greater if date is greater than today php highlight test date is greater than today based on month day in php date is greater than today in php php check date greater than now how to check if date is greater than today in php php check if date is greater than today php if date greater than php date is above actual date php check date is greater than today php datetime greater than check if date is older than today php php when is a date bigger date greater than php istring date greater than php php get current date and check greater than a date more or less condition php date check if date is superior php html css date greater than today php if date Ymd is later than today php check if date is bigger than php mysql string to date is greater than today how to check big date php greater than operation on time php php function if the date is greater than another date
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source